length = float(input("Enter the length of the cuboid: "))
width = float(input("Enter the width of the cuboid: "))
height = float(input("Enter the height of the cuboid: "))

volume = length * width * height
print(f"The volume of the cuboid is: {volume}")7