Management

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

  • 2 ≤ N ≤ 200000
  • 1 ≤ Ai​ ≤ i

Input

The first line contains the integer N.

The next line contains N-1 integers, which are

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

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


Submitting .cpp to 'Management'


You're not logged in! Click here to login

Time Limit: 1 Seconds
Memory Limit: 1024MB
Your best score: 0
Source: ABC163C

Subtask Score
1 100
2 0