Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
109105 | scscsc | [在线测评解答教程] A+B Problem | C++ | Accepted | 1 MS | 276 KB | 174 | 2025-01-27 16:50:39 |
#include<iostream> using namespace std; long long aandb(int a,int b){ return a+b; } int main(){ int a,b; cin>>a>>b; cout<<aandb(a,b); exit(0); }