#CF36D. New Game with a Chess Piece

New Game with a Chess Piece

Petya and Vasya are inventing a new game that requires a rectangular board and one chess piece. At the beginning of the game the piece stands in the upper-left corner of the board. Two players move the piece in turns. Each turn the chess piece can be moved either one square to the right or one square down or jump k squares diagonally down and to the right. The player who can’t move the piece loses.

The guys haven’t yet thought what to call the game or the best size of the board for it. Your task is to write a program that can determine the outcome of the game depending on the board size.

Input

The first input line contains one integer 1  ≤  t  ≤  20202. Each of the following t  lines contains three numbers: k and n, m - the jump length and the board’s length and width (1  ≤  n, m ,k ≤  109).

Output

Output t lines that can determine the outcomes of the game on every board. Write «+» if the first player is a winner, and «-» otherwise.

Example

Input:
10
1 1 1
1 2 1
2 1 2
2 2 2
1 3 2
2 3 2
3 1 3
3 2 3
3 3 3
4 3 3

Output:
-
+
+
-
+
+
-
+
-
-