赞
踩
1000: 整数a+b 题目描述 计算两个整数的和。 输入 输入两个整数,两个整数用空格隔开。 输出 输出为两个整数的和,单独占一行。 样例输入 Copy 1 1 样例输出 Copy
a,b=input().split() print(int(a)+int(b))