False coin 

$\textstyle \parbox{.5\textwidth}{
The \lq\lq Gold Bar'' bank received information fr...
... less than, greater than, or equal to the weight of objects in the
right pan. }$ $\textstyle \parbox{.49\textwidth}{
\begin{center}
\mbox{}
\epsfxsize 2.5in
\epsfbox{p665.eps}
\end{center}}$

In order to detect the false coin the bank employees numbered all coins by the integers from 1 to N, thus assigning each coin a unique integer identifier. After that they began to weight various groups of coins by placing equal numbers of coins in the left pan and in the right pan. The identifiers of coins and the results of the weightings were carefully recorded.

You are to write a program that will help the bank employees to determine the identifier of the false coin using the results of these weightings.

Input 

The first line of the input is an integer M, then a blank line followed by M datasets. There is a blank line between datasets.

The first line of each dataset contains two integers N and K, separated by spaces, where N is the number of coins ( $1 \le N \le 100$) and K is the number of weightings fulfilled ( $1 \le K \le 100$). The following 2K lines describe all weightings. Two consecutive lines describe each weighting. The first of them starts with a number Pi ( $1 \le P_i \le N/2$), representing the number of coins placed in the left and in the right pans, followed by Pi identifiers of coins placed in the left pan and Pi identifiers of coins placed in the right pan. All numbers are separated by spaces.

The second line contains one of the following characters: `<', `>', or `='. It represents the result of the weighting:

Output 

For each dataset, write to the output file the identifier of the false coin or 0, if it cannot be found by the results of the given weightings. Print a blank line between datasets.

Sample Input 

1

5 3
2 1 2 3 4
<
1 1 4
=
1 2 5
=

Sample Output 

3



Miguel Revilla
2000-05-22