Length = int(input( "What do you want the Length to be")) Width = int(input( "What do you want your Width to be")) Height = int(input( "What do you want your Height to be")) print( "Length:", Length) print( "Width is:", Width) print( "Height is:", Height) print( "Volume is:", Length * Width * Height)