Write a program that asks the user how many numbers will be entered and then has the user enter those numbers. When this is done, report to the user the position of the first 7 entered and the last 7 entered. By position we mean, for example, that if the first 7 is the 2nd number entered then its position would be 2. Turn in the following 3 outputs exactly as you see them below to demonstrate that your program works in each case.
Don't forget to use a named constant for the "7", and make sure to use a name that will still make sense if we change the value of the constant to another number such as "8".
Sample Solution