Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134982 潘允晨 02简单两数相加II Python3 Accepted 50 MS 3756 KB 53 2025-11-01 21:50:20

Tests(10/10):


Code:

a,b=input().split() a=int(a) b=int(b) print(a+b)