Ask a person for a starting number and an ending number.
Print out the TOTAL number of numbers between these two numbers (including the ends).
Then on a new line (separated by *****) start displaying the numbers 
that appear in between these numbers.

Such as the person enters in 5 and then 7. The total number between the
numbers is 3 (5,6,7). Then display these numbers one on each line with 
***** in between. So the output will look as follows:

3
*****
5
6
7

If you are up to a challenge, can you make the output look like this:
3 (5,6,7)