a = 2;
b = 3;
a = (a + b) % 2;
b = b – a;
a = a * b;
cout << a << "\n" << b ;
What is the output for a and b?
------------------------------------------------------------
Why is a 3 and b 2 is this one
a = 2;
b = 3;
a = a + b;
b = a – b;
a = a – b;
cout <<a<<endl;
cout << b;