length = int( input( " Lenght: "))
width = int( input( " Width: "))
height= int( input( " Height: "))

result = (length * width * height)

print ( "Volume is " ,result)