Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
39366 | littletwleve | [在线测评解答教程] A+B Problem | C++ | Accepted | 0 MS | 252 KB | 141 | 2024-02-01 12:18:59 |
#include<iostream>//头文件 using namespace std;//命名空间 int main(){ int n1,n2,n3; cin>>n1>>n2; cout<<n1+n2; return 0; }