A growing orthogonal spiral is a line that starts at the origin and turns as it grows. The first segment grows to the right (the positive x direction), the second one up (the positive y direction), the third one left (the negative x direction), and the fourth one down (the negative y direction). From the fifth segment on, the order right, up, left, down repeats.
Every segment length is a positive integer and has to be at least 1 larger than the length of the segment before it. The first segment can take any positive integer length. The picture below is the spiral whose segment lengths are 1, 2, 4, 6, 7, 9, 11, 12, 15, 20.

A point (x,y) in the first quadrant is given. Decide whether the spiral can grow so that the end of its last segment lands exactly on (x,y). Passing through the point does not count, the last segment has to end there. When the point can be reached, find the way of growing whose total segment length is smallest.
The first line holds the number of test cases P. (1≤P≤1000)
Each of the next P lines holds one test case. A line holds the test case number T and the coordinates x and y of the point, separated by spaces. (1≤x≤10000, 1≤y≤10000)
Print one line per test case. Start the line with the test case number T read from the input.
If no way of growing ends at (x,y), print NO PATH after T.
If the point can be reached, print after T the number of segments of the way with the smallest total, then the length of every segment in the order it grew. The way with the smallest total is always the only one, so the answer is fixed. Separate all values with one space.
In every test case whose point can be reached, 22 segments or fewer are enough.