length = float(input("Please input the length of the rectangle in cm: "))
width = float(input("Please input the width of the rectangle in cm: "))
area = length * width
print("\nResult:")
print(f"The area of the rectangle is {area} square centimeters.")