Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
78491 桂敬然 A+B 输入输出练习II Python3 Accepted 37 MS 3760 KB 99 2024-06-22 11:17:50

Tests(1/1):


Code:

N = int(input()) while N > 0: a,b = map(int,input().split(" ")) print(a + b) N -= 1