Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
110819 | 唐诗阳 | 02简单两数相加II | C++ | Wrong Answer | 0 MS | 272 KB | 260 | 2025-02-23 13:58:07 |
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a<<" "<<b<<'\n'<<a+b; return 0; }
------Input------
963 11
------Answer-----
974
------Your output-----
963 11 974