Consider the following code snippet: number = int(input(“Ent…

Consider the following code snippet: number = int(input(“Enter a number: “))if number < 10 :   print("Too small")elif number < 50 :   print("Intermediate")elif number < 100 :   print("High")else :   print("Too high") Assuming that the user input is 60, what is the output of the code snippet?