Write the output for the following python
code.
x=10
X+=20
print ("The x += 20 is =",x)
X-=5
print ("The x -= 5 is= ",x)
x*=5
print ("The x *= 5 is= ",x)
x/=2
print ("The x /= 2 is = ",x)
x%=3
print ("The x %= 3 is= ",x)
x**=2
print ("The x **= 2 is = ",x)
x//=3
print ("The x //= 3 is= ",x)