#Write a Python program that converts Fahrenheit temperature to Celsius #temperature according to the following formula: # Celsius= (5/9)*(Fahrenheit - 32) #input Fahrenheit=float(input("enter Fahrenheit ")) #calculations Celsius= (5/9)*(Fahrenheit - 32) #output print("Celsius=", Celsius)