Python

Dandelion 发表于 2个月前 · 关联问题 A+B 输入输出练习 III

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