l = int(input("Length:")) w = int(input("Width:")) h = int(input("Height:")) volume = l*w*h print("Volume is", volume)