Benson the Rabbit likes towers. There are N cities numbered 1 to N, and city i is located at a point with integer coordinates (X_i,Y_i). No two cities are located at the same point. Benson wants to build towers in some of these cities such that the following conditions are satisfied:
Benson knows that it is always possible to build towers satisfying these conditions, but does not know how he should do so. Help Benson determine where he should build the towers.
Your program must read from standard input.
The first line of the input contains one integer, N, the number of cities.
In the next N lines, the ith line contains two integers X_i, Y_i, which means city i is located at the point (X_i,Y_i).
Your program must print to standard output.
Output one line containing a string of N characters A_1A_2⋯A_N. A_i should be 1 if Benson should build a tower in city i, and 0 otherwise. The towers built should satisfy all the conditions.
If there are several solutions your program can output any one of them.