Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68200 金浩 A+B 输入输出练习III Python3 Accepted 34 MS 3760 KB 100 2024-03-20 18:41:24

Tests(1/1):


Code:

a,b=map(int,input().split()) while a!=0 and b!=0: print(a+b) a,b=map(int,input().split())