Assuming the user enters 25 for x, what is the output of the…
Assuming the user enters 25 for x, what is the output of the following code snippet? x = int( input(“Enter a number: “) ) if x < 100 : x = x + 5 if x < 500 : x = x - 2 if x > 10 : x = x + 1 else : x = x – 1 print(x)