BZOJ 3767 A+B in python

2017.08.21

题目大意

输出A+B.


这道题看到这数据范围直接python啊(qwq

s=raw_input().split()
print(int(s[0])+int(s[1]))