l = int( input( "Length" ) ) w = int( input( "Width" ) ) h = int( input( "Height" ) ) result = w * h * l print('Volume Is' , result)