Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
39366 | littletwleve | [在线测评解答教程] A+B Problem | C++ | 通过 | 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; }