Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
86071 朱正天 A+B 输入输出练习II Python3 Accepted 35 MS 3784 KB 137 2024-07-21 22:56:57

Tests(1/1):


Code:

N = int(input()) res = [] for i in range(N): a = input().split() res.append(int(a[0])+int(a[1])) for i in res: print(i)