# find a,b,c a,b,c=10,20,30 b=b+2 a+=7 c*=a print(a,b,c)
Here is what the above code is Doing:
1. It’s creating three variables, a, b, and c, and assigning them values.
2. It’s adding 2 to the value of b.
3. It’s adding 7 to the value of a.
4. It’s multiplying the value of c by the value of a.
5. It’s printing the values of a, b, and c.