2025-05-16 18:45:20 +09:00

4 lines
84 B
Python

while(True):
a, b = map(int, input().split())
if a==0 and b==0 : break
print(a+b)