NP32. 牛牛的加减器
描述
输入描述
分两行输入两个整数。输出描述
分两行输出加与减的结果。示例1
输入:
1 1
输出:
2 0
Python 解法, 执行用时: 11ms, 内存消耗: 2860KB, 提交时间: 2022-08-01
x = input() y = input() print(x + y) print(x - y)
Python 解法, 执行用时: 11ms, 内存消耗: 2944KB, 提交时间: 2022-07-28
x=input() y=input() a=x+y b=x-y print(a) print(b)
Python 解法, 执行用时: 11ms, 内存消耗: 2944KB, 提交时间: 2022-07-28
x = int(input()) y = int(input()) print(x+y) print(x-y)
Python 解法, 执行用时: 11ms, 内存消耗: 2948KB, 提交时间: 2022-08-02
x=input() y=input() print(x+y) print(x-y)
Python 解法, 执行用时: 11ms, 内存消耗: 2988KB, 提交时间: 2022-07-31
a=int(input()) b=int(input()) print(a+b) print(a-b)