Write a program that prompts the user to input a Celsius temperature and outputs the equivalent temperature in Fahrenheit. The formula to convert the temperature is: F = 9/5 C + 32 where F is the Fahrenheit temperature and C is the Celsius temperature.

Source Code

celsius = float(input("Enter the temperature in Celsius: "))
fahrenheit = (9/5)*celsius + 32
print("The temperature in Fahrenheit is:", fahrenheit)

Output

Enter the temperature in Celsius: 36.8
The temperature in Fahrenheit is: 98.24