Length = int(input( 'Length: ')) Width = int(input( 'Width: ')) Height = int(input( 'Height: ')) volume = Length*Width*Height print('Volume is', volume)