Files
CodeObject/zeta_python/completed/10950.py
2019-11-15 03:29:24 +09:00

11 lines
121 B
Python

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