Source code :-
def farh(cel):
return (cel * (9/5))+32
celsius = int(input("Enter the celsius:"))
c = celsius
f = farh(c)
print("Fahrenheit Temperature is "+str(f))