Assuming that the user enters 60 as the input, what is the o…

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