Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
110758 柯轶炜 A+B 输入输出练习I Python3 Accepted 37 MS 3752 KB 97 2025-02-23 12:20:27

Tests(1/1):


Code:

import sys for line in sys.stdin: a, b = map(int, line.strip().split()) print(a + b)