If no unusual sequence exists, print Impossible on the first line.
If one exists, several sequences may satisfy the conditions, so only the sequence fixed by the rule below counts as correct. Let m=n−k and define A this way.
- Ai=i+1 for 1≤i≤m−1
- Am=1
- Ai=i for m+1≤i≤n
The first m positions hold 2,3,…,m,1 in that order, and every later position holds Ai=i. Print this sequence A on the first line, separated by spaces.