CSES - Permutations
  • Time limit: 1.00 s
  • Memory limit: 512 MB

A permutation of integers 1,2,,n1,2,\ldots,n is called beautiful if there are no adjacent elements whose difference is 11.

Given nn, construct a beautiful permutation if such a permutation exists.

Input

The only input line contains an integer nn.

Output

Print a beautiful permutation of integers 1,2,,n1,2,\ldots,n. If there are several solutions, you may print any of them. If there are no solutions, print "NO SOLUTION".

Constraints

  • 1n1061 \le n \le 10^6

Example 1

Input:

5

Output:

4 2 5 3 1

Example 2

Input:

3

Output:

NO SOLUTION