1.题目1:输入A、B,输出A+B。

#input: 12 45
#output:57

c = input().split() #将输入以空格为分隔符返回一个字符串列表
a,b = map(int,c)
sum1 = a + b
print(sum1)
求和

相关文章: