BC20 进制A+B

思路:

step1:输入,并用空格分隔;
step2:把进制标识位切除;
step3:转换类型并相加输出;

代码如下:

n = input().split()
a = n[0][2:]
b = n[1][1:]
print(int(a,16) + int(b,8))