Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
99988 WangLaoShi00 A+B 输入输出练习I Python3 Accepted 39 MS 3752 KB 113 2024-12-01 12:32:31

Tests(1/1):


Code:

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