View Single Post
Mentor
9Feb2010,12:52  
xpi0t0s's Avatar
Code:
int a=12;
int b=33;
int sum;
sum=a+b;
cout << a << "+" << b << "=" << sum << endl;