- Time limit: 1.00 s
- Memory limit: 512 MB
The goal is to move all the disks to the right stack using the middle stack. On each move you can move the uppermost disk from a stack to another stack. In addition, it is not allowed to place a larger disk on a smaller disk.
Your task is to find a solution that minimizes the number of moves.
Input
The only input line has an integer $n$: the number of disks.
Output
First print an integer $k$: the minimum number of moves.
After this, print $k$ lines that describe the moves. Each line has two integers $a$ and $b$: you move a disk from stack $a$ to stack $b$.
Constraints
- $1 \le n \le 16$
Input:
2
Output:
3
1 2
1 3
2 3