Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43821 | wangyuchun | A+B问题 | C++ | Accepted | 0 MS | 244 KB | 108 | 2024-03-23 11:31:23 |
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b; return 0; }