| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 390 | huangshengxuan | A+B问题 | C++ | Accepted | 1 MS | 236 KB | 129 | 2022-11-11 19:55:24 |
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b; c=a+b; cout<<c<<endl; return 0; }