def farh(cel): return (cel *(9/5)) + 32 while True: c = int(input("Enter celcius to convert in farhrenhite :")) f = farh(c) print("Fahreheit Temperature is " + str(f))