Python

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

while True: l=[int(i) for i in input().split()[:]] if not l: break print(sum(l)) print()