print ("Find out any cuboid volume") length = int (input ("Length: ")) width = int (input ("Width: ")) height = int (input ("height: ")) print ("The volume of the cuboid is", length * width * height)