length=int(input("Please input a length: ")) width=int(input("Please input a width: ")) height=int(input("Please input a height: ")) volume = (length * width * height) print("Volume is", volume) #works