eolymp
bolt
Try our new interface for solving problems
Problems

Game with Cards

Game with Cards

Tyomitch plays the following game with n of his friends. Tyomitch leaves the room. His friends write numbers from 1 to n on cards, and each of the friends takes a card in a way that Tyomitch doesn't know which card each one has. Let's number the friends from 1 to n. After Tyomitch comes back to the room, each of his friends makes 2 statements of the following form (examples given for i'th friend):

  1. I have the card number ai.
  2. bi'th friend has the card number ci (bii).

Exactly one of these statements is true, and the other one is false. It's known that no two friends said that friend b has card c, and nobody said that friend b has card c if b admitted that he has this very card. The task for Tyomitch is to determine for each of his friends which of his statements is true.

Input

The first line of the input contains the number n (2n1000). Each of the following n lines contains a triple ai, bi, ci - the statements of Tyomitch's friends.

Output

The only line of output must contain n numbers separated with spaces, being the numbers of the true statement (either 1 or 2) for each of the friends. It is known that a solution exists.

Time limit 1 second
Memory limit 128 MiB
Input example #1
5
3 4 3
1 3 2
3 2 5
2 5 4
3 4 1
Output example #1
1 2 2 2 2
Author Alexander Ipatov
Source 2005 Petrozavodsk Training Camp, August 30