Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
86072 朱正天 A+B 输入输出练习III Python3 Accepted 36 MS 3772 KB 179 2024-07-21 22:59:27

Tests(1/1):


Code:

res = [] while True: a = input().split() if a[0] == "0" and a[1] == "0": break else: res.append(int(a[0])+int(a[1])) for i in res: print(i)