Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96236 | 徐齐力 | 02简单两数相加II | C++ | Wrong Answer | 0 MS | 268 KB | 155 | 2024-11-03 14:10:23 |
#include<iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b; cout<<a+b; cin>>c>>d; cout<<c+d; return 0; }
------Input------
963 11
------Answer-----
974
------Your output-----
9744826768