num1 = int( input("Enter a length of the cuboid: ") ) num2 = int( input("Enter a width of the cuboid ") ) num3 = int( input("Enter height of the cuboid ") ) print( num1, "times", num2, "times", num3 ,"equals", num1*num2*num3 , "is the volum of the cuboid!")