Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
78496
Run ID
作者
问题
语言
测评结果
Time
Memory
代码长度
提交时间
78496
桂敬然
A+B 输入输出练习III
Python3
Accepted
40 MS
3760 KB
124
2024-06-22 11:23:07
Tests(1/1):
Code:
while True: a,b = map(int,input().split(" ")) if a != 0 or b != 0: print(a + b) else: break