The "Gold Bar"bank received information from reliable sources that in their last group of N coins exactly one coin is false and differs in weight from other coins (while all other coins are equal in weight). After the economic crisis they have only a simple balance available (like one in the picture). Using this balance, one is able to determine if the weight of objects in the left pan is less than, greater than, or equal to the weight of objects in the right pan. 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.
输入描述:
The first line of the input file contains two integers N and K, separated by spaces, where N is the number of coins (2', or '='. It represents the result of the weighting: '' means that the weight of coins in the left pan is greater than the weight of coins in the right pan, '=' means that the weight of coins in the left pan is equal to the weight of coins in the right pan.


输出描述:
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.
示例1

输入

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

输出

3
加载中...