题解 | 多组数据a+b III
多组数据a+b III
https://www.nowcoder.com/practice/7e094c0a3a9945b3bee8e1f3c9ea246a
while 1:
x, y = map(int, input().split())
if x==0 and y==0:
break
print(x + y)
多组数据a+b III
https://www.nowcoder.com/practice/7e094c0a3a9945b3bee8e1f3c9ea246a
while 1:
x, y = map(int, input().split())
if x==0 and y==0:
break
print(x + y)
相关推荐
查看1道真题和解析