Write a python program to convert temperature form celsius to fahrenheit .

 Equation to calculate temperature from celsius to fahrenheit is :

                                                    F = (9/5) * C + 32


Celsius = int(input("Enter Temperature In Celsius : "))
Fahrenheit = (9/5) * Celsius + 32
print("Fahrenheit : ",Fahrenheit)

Comments