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