#include<iostream> #include<cstdio> using namespace std; int main(){ int a=123,b=456; int c=a+b; cout<<"sum is "<<c<<endl; return 0; }