Run ID:2125

提交时间:2023-12-16 14:40:17

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