What is the output of the following Python code snippet?```pythontemperature = 25if temperature > 30: print("Hot")elif temperature > 20: print("Warm")else: print("Cold")```