| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 50888 | 逸凡 | [在线测评解答教程] A+B Problem | C++ | Accepted | 1 MS | 240 KB | 136 | 2024-09-15 11:42:09 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c=0; cin>>a>>b; c=a+b; cout<<c; return 0; }