Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
66357 向安琪 A+B 输入输出练习III Python3 Accepted 40 MS 3744 KB 193 2024-03-07 11:27:35

Tests(1/1):


Code:

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