Consider the code below. What will it print? temp = 25 if temp > 30: print("Hot") elif temp < 20 or temp == 25: print("Warm") else: print("Cold")