CSES - Building Teams
  • Time limit: 1.00 s
  • Memory limit: 512 MB

There are nn pupils in Uolevi's class, and mm friendships between them. Your task is to divide the pupils into two teams in such a way that no two pupils in a team are friends. You can freely choose the sizes of the teams.

Input

The first input line has two integers nn and mm: the number of pupils and friendships. The pupils are numbered 1,2,,n1,2,\dots,n.

Then, there are mm lines describing the friendships. Each line has two integers aa and bb: pupils aa and bb are friends.

Every friendship is between two different pupils. You can assume that there is at most one friendship between any two pupils.

Output

Print an example of how to build the teams. For each pupil, print "1" or "2" depending on to which team the pupil will be assigned. You can print any valid team.

If there are no solutions, print "IMPOSSIBLE".

Constraints

  • 1n1051 \le n \le 10^5
  • 1m21051 \le m \le 2 \cdot 10^5
  • 1a,bn1 \le a,b \le n

Example

Input:

5 3
1 2
1 3
4 5

Output:

1 2 2 1 2