Next year, the Overly Complicated Problem Colloquium will take place in the Greatly Magnificent City. In order to impress the guests, several construction projects are underway. This includes painting all the city streets.
As one might expect, the city consists of $$$n$$$ junctions and $$$m$$$ bidirectional streets connecting them. The junctions are indexed $$$1 \ldots n$$$. No pair of junctions is connected by more than one street, no street connects a junction to itself and it is possible to walk from any junction to any other using these streets.
Each street should be painted either red or blue. The mayor thinks that it's a lot more interesting to walk around the city if every street is different from the last. Therefore, the mayor has issued an additional constraint: "if $$$p$$$ and $$$q$$$ are different junctions, then it must be possible to walk from $$$p$$$ to $$$q$$$ such that every street on the path is painted in a different color from the street before it." Such a path may also visit some streets or junctions multiple times.
Your task is to suggest a way to paint all the streets so that the mayor is satisfied or to claim that this isn't possible.
The first line contains one integer $$$t$$$ ($$$1 \le t \le 1000$$$) — the number of test cases. $$$t$$$ test cases follow. Each test case is described as follows.
The first line of the test case contains two integers $$$n$$$ and $$$m$$$ — the number of junctions and streets, respectively ($$$2 \le n \le 100$$$, $$$1 \le m \le 300$$$). Each of the following $$$m$$$ lines consists of two integers $$$u$$$ and $$$v$$$ ($$$1 \le u \le n$$$, $$$1 \le v \le n$$$), denoting a street between junctions $$$u$$$ and $$$v$$$.
It is guaranteed that in each input file, there are at most 100 test cases where $$$n \gt 50$$$ or $$$m \gt 150$$$.
For each test case, print the answer on a separate line as follows:
36 61 22 33 14 15 26 36 61 22 33 13 44 54 64 31 24 22 3
RRRBBB RBBRBB IMPOSSIBLE
The following graphs illustrate a possible coloring for the first two test cases.
In the third test case, however you paint the edges, there will always be a pair of leaves with the same color leading into them, making the condition impossible to satisfy.
| Name |
|---|


