# get the fahrenheit temperature from the user as a string fahrenheit_string = input("Enter the temperature in Fahrenheit: ") # convert the fahrenheit string to an integer. fahrenheit = float(fahrenheit_string) # compute the equivalent temperature in Celsius celsius = (fahrenheit - 32) * 5/9 print("The temperature in celsius is", celsius)