Files

11 lines
121 B
Python

N = range(int(input()))
[print(
sum(
map(
int,input().split()
)
)
)
for i in N
]