Length = int(input("Enter a number for length of a shape: ")) Width = int(input("Enter a number for width: ")) Height = int(input("Enter a number for height: ")) result = Length * Width * Height print("volume", "=", result)