length = int(input("Pick a length")) width = int(input("Pick a width")) height = int(input("Pick a hight")) volume = (length * width * height) print("volume is", volume)