CF353B Two Heaps

Description

Valera has $ 2·n $ cubes, each cube contains an integer from $ 10 $ to $ 99 $ . He arbitrarily chooses $ n $ cubes and puts them in the first heap. The remaining cubes form the second heap. Valera decided to play with cubes. During the game he takes a cube from the first heap and writes down the number it has. Then he takes a cube from the second heap and write out its two digits near two digits he had written (to the right of them). In the end he obtained a single fourdigit integer — the first two digits of it is written on the cube from the first heap, and the second two digits of it is written on the second cube from the second heap. Valera knows arithmetic very well. So, he can easily count the number of distinct fourdigit numbers he can get in the game. The other question is: how to split cubes into two heaps so that this number (the number of distinct fourdigit integers Valera can get) will be as large as possible?

Input Format

The first line contains integer $ n $ $ (1

Output Format

In the first line print a single number — the maximum possible number of distinct four-digit numbers Valera can obtain. In the second line print $ 2·n $ numbers $ b_{i} $ $ (1

Explanation/Hint

In the first test case Valera can put the first cube in the first heap, and second cube — in second heap. In this case he obtain number $ 1099 $ . If he put the second cube in the first heap, and the first cube in the second heap, then he can obtain number $ 9910 $ . In both cases the maximum number of distinct integers is equal to one. In the second test case Valera can obtain numbers $ 1313,1345,2413,2445 $ . Note, that if he put the first and the third cubes in the first heap, he can obtain only two numbers $ 1324 $ and $ 1345 $ .