A+B problem(高精)python

自带高精就是好呢,代码好简单/QwQ

1
2
3
4
5
a=input()
b=input()
a=int(a)
b=int(b)
print(a+b)