fahToCel (147B)
1 inputTemp = float(input("Temprature in fahrenheit: ")) 2 3 convertedTemp = (5 / 9) * (inputTemp - 32) 4 5 print("the converted temp is", convertedTemp)