#abc163c. [abc163_c]management
[abc163_c]management
Problem Statement
A company has members, who are assigned ID numbers .
Every member, except the member numbered , has exactly one immediate boss with a smaller ID number.
When a person is the immediate boss of a person , the person is said to be an immediate subordinate of the person .
You are given the information that the immediate boss of the member numbered is the member numbered . For each member, find how many immediate subordinates it has.
Constraints
Input
Input is given from Standard Input in the following format:
Output
For each of the members numbered , print the number of immediate subordinates it has, in its own line.
Sample Input 1
5
1 1 2 2
Sample Output 1
2
2
0
0
0
The member numbered has two immediate subordinates: the members numbered and .
The member numbered has two immediate subordinates: the members numbered and .
The members numbered , , and do not have immediate subordinates.
Sample Input 2
10
1 1 1 1 1 1 1 1 1
Sample Output 2
9
0
0
0
0
0
0
0
0
0
Sample Input 3
7
1 2 3 4 5 6
Sample Output 3
1
1
1
1
1
1
0