Run ID:135058
提交时间:2025-11-02 13:41:25
while True: line = input() a, b = map(int, line.split) if a == 0 and b == 0: break print(a + b)