The primeness of any permutation
of
is defined as the sum of all prime absolute differences of consecutive elements. Given an integer
, find any permutation
of
with the maximum primeness over all length
permutations.
Constraints

Subtask 1 [30%]

Subtask 2 [30%]

Subtask 3 [40%]
No additional constraints.
Input Specification
The first and only line of input contains a single integer
.
Output Specification
Output
space-separated integers on a single line, representing a permutation
of
with the maximum primeness over all length
permutations.
Sample Input 1
Copy
3
Sample Output 1
Copy
2 3 1
Explanation for Sample 1
There are
absolute differences of consecutive elements, namely
and
. Out of these, only
is prime, so the primeness of this permutation is
.
Sample Input 2
Copy
6
Sample Output 2
Copy
3 6 1 4 2 5
Explanation for Sample 2
The absolute differences of consecutive elements are
. All of these are prime, so the primeness of this permutation is
.
Comments
petition to ban changes in problem constraints after a problem has at least one AC submission