lenght = int(input("Enter lenght: ")) width = int(input("Enter width: ")) Height = int(input("Enter height: ")) Volume = lenght * width * Height print("The volume of the object is", Volume)