с CM до м в Python

# def meter(cm):
    # return (cm *(c/100))

c = int(input("Enter meter to convert in centimeter :"))
print(" The  conversion of meter to centimeter is ",c/100 )
Coding boy Hasya