Source code -
length = int(input("Enter the length:"))
breadth = int(input("Enter the breadth:"))
height = int(input("Enter the height:"))
voc = length * breadth * height
print("The volume of the cuboid is",voc)