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