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