Run ID:112318

提交时间:2025-03-09 12:52:19

#include <bits/stdc++.h>//包含头文件名bits/stdc++.h using namespace std;//使用命名空间std int main(){//程序的开始、入口 int a; int b; int c; a=123; b=456; c=a+b; cout<<"sum is "<<c; return 0;// 程序的结束、出口 }