Run ID:78495

提交时间:2024-06-22 11:19:44

n = int(input()) l = [] for i in range(n): a,b=map(int,input().split()) l.append(a+b) for j in l: print(j)