For each testcase:
If there is not any way to get 24 points, print a single line with -1.
Otherwise, let $A$ be an array with $2n-1$ numbers and at firsrt $A_i=n\ (1 \leq i \leq n)$. You need to print $n-1$ lines and the $i$th line contains one integer $a$, one char $b$ and then one integer c, where $1 \leq a,c <n+i$ and $b$ is "+","-","*" or "/". This line means that you let $A_a$ and $A_c$ do the operation $b$ and store the answer into $A_{n+i}$.
If your answer satisfies the following rule, we think your answer is right:
1. $A_{2n-1}=24$
2. Each position of the array $A$ is used at most one tine.
3. The absolute value of the numerator and denominator of each element in array $A$ is no more than $10^9$