Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100000 wangzihh A+B 输入输出练习I Python3 Accepted 41 MS 3748 KB 118 2024-12-01 12:42:45

Tests(1/1):


Code:

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