length = int(input("Length: ")) width = int(input("Width: ")) height = int(input("Height: ")) volume = length*width*height print("\nVolume is", volume)