python题解

Yumi0606 发表于 6个月前 · 关联问题 A+B 输入输出练习 I

while True:

try: a, b = map(int, input().split()) print(a + b) except: break