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

6 lines
93 B
Python

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