Files
CodeObject/zeta/py/completed/10950.py
2025-05-07 04:44:30 +09:00

11 lines
121 B
Python

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