Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4791 | 邱一涵 | 02简单两数相加 | C++ | Wrong Answer | 0 MS | 252 KB | 175 | 2024-09-16 20:19:36 |
#include<iostream> using namespace std; int main(){ int a; cin>>a; cout<<a<<endl; int b; cin>>b; cout<<b<<endl; cout<<a+b<<endl; return 0; }
------Input------
209 110
------Answer-----
319
------Your output-----
209 110 319