Python

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

N=int(input()) for i in range(N): try: a,b=map(int,input().split()) print(a+b) except: break