# # Read a temperature from the user and report if gold is a solid, liquid, or # gas at that temperature. # # Read the temperature from the user. temp = float(input("Enter the temperature of some gold: ")) # Determine if the gold is solid, liquid or gas. if temp < 1064: state = "solid" elif temp < 2856: state = "liquid" else: state = "gas" # Report the state. print(f"At {temp} degrees Celsius, gold is a {state}.")