Length = int(input("Length: ")) Width = int(input("Width: ")) Height = int(input("Height: ")) total = Length * Width * Height print("Volume is", total)