Here is my code:
def c_to_f(c):
f = c*(9/5) + 32
return f
c = input("Please enter the temperature in celsius: ")
if c< -273.15:
return "That temperature is not achievable."
else:
return f
print("Here's your temperature in Fahrenheit: ", c_to_f(c))
The terminal, on executing this code displays:
if c< -273.15:
^
IndentationError: unexpected indent
How do I proceed to solve this error?