Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
124061 柯轶炜 A+B 输入输出练习III Python3 Accepted 44 MS 3764 KB 165 2025-07-10 21:49:18

Tests(1/1):


Code:

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