- Time limit: 1.00 s
- Memory limit: 512 MB
Given two integers and , your task is to construct an array that contains every integer between exactly once and there are exactly consecutive elements such that the first element is greater than the second element.
Input
The only input line has two integers and .
Output
Print one line that contains the array. You may print any valid solution.
Constraints
Example
Input:
5 2
Output:
1 4 2 5 3