Run ID:78491

提交时间:2024-06-22 11:17:50

N = int(input()) while N > 0: a,b = map(int,input().split(" ")) print(a + b) N -= 1