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

#Static 

fah = 205
 
cel = (fah-32)*5/9
 
print(“The Temperature in Celsius is :- “,cel) 
 

 

#Dynamic

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