# Cel2Fahr Example # Convert a Celsius temperature to Fahrenheit. cel = float(input("Enter a Celsius temperature: ")) fahr = 9.0 * cel / 5.0 + 32.0 print("The corresponding Fahrenheit temperature is " + fahr + ".")