Score : $600$ points
Snuke has an integer sequence, $a$, of length $N$. The $i$-th element of $a$ ($1$-indexed) is $a_{i}$.
He can perform the following operation any number of times:
He would like to perform this operation between $0$ and $2N$ times (inclusive) so that $a$ satisfies the condition below. Show one such sequence of operations. It can be proved that such a sequence of operations always exists under the constraints in this problem.
Input is given from Standard Input in the following format:
$N$ $a_1$ $a_2$ $...$ $a_{N}$
Let $m$ be the number of operations in your solution. In the first line, print $m$. In the $i$-th of the subsequent $m$ lines, print the numbers $x$ and $y$ chosen in the $i$-th operation, with a space in between. The output will be considered correct if $m$ is between $0$ and $2N$ (inclusive) and $a$ satisfies the condition after the $m$ operations.
3 -2 5 -1
2 2 3 3 3
2 -1 -3
1 2 1
5 0 0 0 0 0
0