# Celsius to Fahrenheit conversion constants ZERO_IN_F = 32 CONVERSION_FACTOR = 1.8 # get user input temp_C = input("Enter temperature in Celsius: ") # convert Celsius temperature to Fahrenheit temp_F = ZERO_IN_F + CONVERSION_FACTOR * temp_C # output temperatures print temp_C, "degrees Celsius is equal to", temp_F, "degrees Fahrenheit"