Files
CodeObject/storage/zeta/py/completed/10950.py

11 lines
121 B
Python

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