| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 50922 | 逸凡 | [在线测评解答教程] A+B Problem | C++ | Accepted | 1 MS | 248 KB | 131 | 2024-09-16 09:06:57 |
#include<iostream> using namespace std; int main(){ int a,b,c=0; cin>>a>>b; c=a+b; cout<<c; return 0; }