NC18205. A+B(2)
描述
https://ac.nowcoder.com/acm/contest/5657#question
输入描述
输入第一行包括一个数据组数t(1 <= t <= 100)
接下来每行包括两个正整数a,b(1 <= a, b <= 1000)
输出描述
输出a+b的结果
示例1
输入:
2 1 5 10 20
输出:
6 30
Python3 解法, 执行用时: 37ms, 内存消耗: 4448K, 提交时间: 2022-11-27 21:10:41
for i in range(int(input())):print(sum(map(int, input().split(" "))))
bash 解法, 执行用时: 187ms, 内存消耗: 13216K, 提交时间: 2021-07-24 13:48:34
#!/bin/bash read str while read str1;do echo $str1|tr ' ' '+'|bc done