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