Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
112979 杨启宏 02简单两数相加 C++ Wrong Answer 1 MS 264 KB 163 2025-03-14 22:51:32

Tests(0/10):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b,c,d; scanf("%1d%1d",&a,&b); cout<<a+b<<endl; return 0; }


Run Info:

------Input------
963 11
------Answer-----
974
------Your output-----
15