PROGRAMMING:Survey the popularity of TV programs
A TV station wants to investigate the audience's popularity of its eight columns (with corresponding column numbers of 1-8). It has investigated a total of $$n viewers ($$1-1000 $$). Now it is required to write a program to input the voting situation of each audience (each audience can only choose one favorite column to vote) and output the voting situation of each column.
###Input format:
Enter a positive integer $$n $$($$1 / Le n / Le 1000 $$) on line 1 and $$n $$integers separated by spaces on line 2.
###Output format:
Output the number of all 8 columns and the number of votes in order, each number occupies 4 digits, and output the number of one column and the number of votes in each line.
###Input example:
```in
ten
3 4 7 6 3 9 2 3 1 8
```
###Output example:
```out
1 1
2 1
3 3
4 1
5 0
6 1
7 1
8 1
```
answer:If there is no answer, please comment
###Input format:
Enter a positive integer $$n $$($$1 / Le n / Le 1000 $$) on line 1 and $$n $$integers separated by spaces on line 2.
###Output format:
Output the number of all 8 columns and the number of votes in order, each number occupies 4 digits, and output the number of one column and the number of votes in each line.
###Input example:
```in
ten
3 4 7 6 3 9 2 3 1 8
```
###Output example:
```out
1 1
2 1
3 3
4 1
5 0
6 1
7 1
8 1
```
answer:If there is no answer, please comment