length = int( input( "Enter the length: " ) ) width = int( input( "Enter the width: " ) ) height = int( input( "Enter the height: " ) ) volume = length * width * height print( "Volume is", volume )