NC14581. 客官这边请
描述
输入描述
第一个行会输入一个整数T(1<=T<=20),代表有T组测试数据,接下来T行,每一行会输入两个整数A和B(0<A,B<10的100次方)
输出描述
每一个测试数据,你要输出两行,第一行是“Case #:”,#代表第T组测试数据,第二行要输出“A + B = Sum”Sum是A+B的结果.
两组数据之间输出一个换行
示例1
输入:
2 1 2 112233445566778899 998877665544332211
输出:
Case 1: 1 + 2 = 3 Case 2: 112233445566778899 + 998877665544332211 = 1111111111111111110
pypy3(pypy3.6.1) 解法, 执行用时: 40ms, 内存消耗: 22264K, 提交时间: 2020-09-01 18:56:09
for _ in range(int(input())): a, b = map(int,input().split()) print('Case ' + str(_+1) + ':') print(a,'+',b,'=',a+b) print()
Python3(3.5.2) 解法, 执行用时: 26ms, 内存消耗: 3320K, 提交时间: 2020-08-03 17:43:25
T=int(input()) for t in range(1,T+1): a,b=map(int,input().split()) print('Case {}:\n{} + {} = {}\n'.format(t,a,b,a+b))