Use namespace std
int main()
{
int a= 100,b = 3;
//The following three sentences are the key points.
a = a+b;
b = a-b;
a = a-b;
printf("%d %d\n ",a,b);
}