What is the output of the following Python program? temp = 32 if temp > 30: print("It's hot") elif temp > 20: print("It's nice") else: print("It's cold") print("Weather report complete.")