Write a Python program to enter temperature in Celsius and convert it into Fahrenheit.

#Static

Cel = 100
 
fah = (Cel *9/5)+32
 
print(“The Temperature in Fahrenheit is :- “,fah)
 

 

#Dynamic

Cel = int(input(“Enter the temperature in Celsius :-“))
 
fah = (Cel *9/5)+32
 
print(“The Temperature in Fahrenheit is :- “,fah)