n1 = int(input( "Length: " ) ) n2 = int(input( "Width: " ) ) n3 = int(input( "Height: " ) ) print() print( "Volume is", n1 * n2 * n3)