Answer:
Output will be as follows
a= 11
b= 12
Explanation:
In this program, two values 10, and 12 assigned to two variables a and b respectively. In next step the values of a has been checked that whether it is equal to 10 or greater than 10. so according to the assigned values, a is equal to 10 so a is incremented by 1 and becomes 11. while there is no change in the value of b.
So the output of a = 11 and b= 12.