All Tech at one spot
cm = int(input(“Enter the Centimeter :-“))
meter = cm/100.0
km = cm/100000.0
print(“The length in the Meter :-“,meter)
print(“The length in the km :-“,km)