题解 | 多组输入a+b II
多组输入a+b II
https://www.nowcoder.com/practice/37cad29015e3457ba256e3319436d0e6
T = int(input()) list2 = [] for i in range(0,T): list1 = [int(j) for j in input().split()] list2.append(list1) for k in range(0, T): print(sum(list2[k]))