Peter works in the Slovak Institute of Gears. After years of
hard work he has constructed a special machine whose only
purpose is to rotate a lot of gears. After watching it for
three hours (it makes a good mechanical "screensaver"), he got
interested in one mathematical problem.
In the machine there are gears, where for every
the -th gear is connected to the gears
and – except for gears and that have only one neighbor each.
The hidden engine rotates the first gear clockwise one tooth
per second. As the gears are connected, all other gears rotate
at the same speed. The -th gear has teeth numbered
counter-clockwise from 0 to . There is also one red mark next to each gear. In
the beginning the gears are rotated so that the 0-th tooth of
each gear is next to its red mark.
Peter has imagined a configuration of gears. In his
configuration, for all
the -th wheel has the
tooth next to its
red mark. He would like to know whether his machine will reach
this configuration – and if yes, when it will happen for the
first time.
Input
The first line of the input contains one integer
– the
number of test cases. For each test case there is one integer
denoting the number of gears. lines follow, one for each gear.
The -th line contains
numbers and
as described above
and . You may assume that the least common multiple of
all is at most
in cases where
and at most
when
.
Output
For each test case output one line with the first time when,
for all , the
-th gear will have the
tooth number next
to the red mark. If this never happens, output one line with
the string "Impossible" (without the
quotes) instead.
Sample Input 1 |
Sample Output 1 |
2
3
5 2
4 2
6 4
2
4 3
6 0
|
22
Impossible
|