列表

详情


NP32. 牛牛的加减器

描述

为了辅导刚上小学的妹妹做功课,牛牛想用Python写一个加减器帮助妹妹巩固加减运算。现要求输入两个数字x与y,分别输出x+y的结果和x-y的结果。

输入描述

分两行输入两个整数。

输出描述

分两行输出加与减的结果。

示例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)

上一题