#Lutece0211. Stars

Stars

Migrated from Lutece 211 Stars

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let the level of a star be an amount of the stars that are not higher and not to the right of the given star. Astronomers want to know the distribution of the levels of the stars.

.

For example, look at the map shown on the figure above. Level of the star number 5 is equal to 3 (it's formed by three stars with a numbers 11, 22 and 44). And the levels of the stars numbered by 22 and 44 are 11. At this map there are only one star of the level 00, two stars of the level 11, one star of the level 22, and one star of the level 33.

You are to write a program that will count the amounts of the stars of each level on a given map.

Input

The first line of the input file contains a number of stars NN (1N150001\leq N\leq 15000). The following NN lines describe coordinates of stars (two integers XX and YY per line separated by a space, 0X,Y320000\leq X,Y\leq 32000). There can be only one star at one point of the plane. Stars are listed in ascending order of YY coordinate. Stars with equal YY coordinates are listed in ascending order of XX coordinate.

Output

The output should contain NN lines, one number per line. The first line contains amount of stars of the level 00, the second does amount of stars of the level 11 and so on, the last line contains amount of stars of the level N1N-1.

Samples

5
1 1
5 1
7 1
3 3
5 5
1
2
1
1
0

Note

This problem has huge input data,use scanf instead of cin to read data to avoid time limit exceed.

The data used in this problem is unofficial data prepared by standy. So any mistake here does not imply mistake in the offcial judge data.

Resources

Ural Collegiate Programming Contest 1999