시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 (추가 시간 없음) 1024 MB59403866.667%

문제

Example exam by Ellen.

Ellen is teaching elementary math to her students and the time for the final exam has come. The exam consists of $n$ questions. In each question, the students have to add ('+'), subtract ('-') or multiply ('*') a pair of numbers.

Ellen has already chosen the $n$ pairs of numbers. All that remains is to decide for each pair which of the three possible operations the students should perform. To avoid students getting bored, Ellen wants to make sure that the $n$ correct answers to her exam are all different.

Please help Ellen finish constructing the exam by automating this task.

입력

The input consists of:

  • One line with an integer $n$ ($1\leq n \leq 2\,500$), the number of pairs of numbers.
  • $n$ lines with two integers $a$ and $b$ ($\left|a\right|, \left|b\right| \leq 10^6$), a pair of numbers used.

출력

If there is no way to construct the exam such that the $n$ correct answers are all different, output "impossible".

Else, for each pair of numbers $(a,b)$ in the same order as in the input, output a valid equation. Each equation should consist of five parts: $a$, one of the three operators, $b$, an equals sign ('='), and the result of the expression. All the $n$ expression results must be different.

If there are multiple valid solutions, you may output any one of them.

예제 입력 1

4
1 5
3 3
4 5
-1 -6

예제 출력 1

1 + 5 = 6
3 * 3 = 9
4 - 5 = -1
-1 - -6 = 5

예제 입력 2

4
-4 2
-4 2
-4 2
-4 2

예제 출력 2

impossible