f = input("Enter temperature in degrees Fahrenheit> ") k = (f - 32) * 5 / 9 + 273.15 if f < 0: print("That temperature is below 0 Kelvin, which is impossible") else: print(round(f, 2), "Fahrenheit is", round(k, 2), "Kelvin")