length = float(input("what is your length?:")) width = float(input("what is your width?:")) height = float(input("what is your height?:")) volume = length * width * height print("Volume is", volume)