I need help creating a program to display the integers from input[0] through input[1]. That is, if input[0] contains 4 and input[1] contains 8, the display 4,5,6,7,8 (on separate lines).

To create a program that displays integers from input[0] through input[1], you can use a loop to iterate through the range of numbers from input[0] to input[1]. Here's an example of how you can achieve this in Python:

```python
# Get the start and end values from the user
start = int(input("Enter the starting value: "))
end = int(input("Enter the ending value: "))

# Iterate through the range and display the integers
for num in range(start, end+1):
print(num)
```

In this program, the `range()` function is used to generate a sequence of numbers from `start` to `end+1`. The `+1` is necessary because the ending value is exclusive in the range. The loop then iterates through each number in the range and prints it on a separate line using the `print()` function.

To run this program, you can save it with a .py extension (e.g., display_integers.py) and execute it using a Python interpreter or IDE.