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