def fahrenheit(x: float) -> float: if x < -273.15: return -459.67 return x * (9/5) + 32