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