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