Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2125 Kevin Jiang [在线测评解答教程] A+B Problem C++ Accepted 0 MS 264 KB 221 2023-12-16 14:40:17

Tests(11/11):


Code:

//导入工具包 输入输出流 #include<iostream> //使用 std 命名空间 using namespace std; //程序开始 int main(){ int a; int b; cin>>a>>b; cout<<a+b; //程序结束 return 0; }