Python Code Challenge

196 - What is wrong with the code below?
def convert_to_inches(centimeters):
    return centimetres ** 0.393701

print(convert_to_inches(100))