length = int(input("Length: ")) width = int(input("Width: ")) height = int(input("Height: ")) WidthxHeight = (width*height) Volume = (WidthxHeight*length) print("Volume is", Volume)