Run ID:124061

提交时间:2025-07-10 21:49:18

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