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