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

6 lines
93 B
Python

while True:
s = sum(map(int, input().split()))
if s == 0:
break
print(s)