length = int(input("Length: ")) width = int(input("Width: ")) height = int(input("Height: ")) vol = height * width * length print(vol)