一行输入两个数

a, b = input().split()
c = int(a) + int(b)
print(c)


 

猜你喜欢

转载自blog.csdn.net/zjkpy_5/article/details/84346560