#P1914B. Preparing for the Contest

    ID: 10232 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: 3 Uploaded By: Tags>constructive algorithmsmath*800

Preparing for the Contest

Description

Monocarp is practicing for a big contest. He plans to solve nn problems to make sure he's prepared. Each of these problems has a difficulty level: the first problem has a difficulty level of 11, the second problem has a difficulty level of 22, and so on, until the last (nn-th) problem, which has a difficulty level of nn.

Monocarp will choose some order in which he is going to solve all nn problems. Whenever he solves a problem which is more difficult than the last problem he solved, he gets excited because he feels like he's progressing. He doesn't get excited when he solves the first problem in his chosen order.

For example, if Monocarp solves the problems in the order [3,5,4,1,6,2][3, \underline{5}, 4, 1, \underline{6}, 2], he gets excited twice (the corresponding problems are underlined).

Monocarp wants to get excited exactly kk times during his practicing session. Help him to choose the order in which he has to solve the problems!

The first line contains one integer tt (1t10001 \le t \le 1000) — the number of test cases.

Each test case consists of one line containing two integers nn and kk (2n502 \le n \le 50; 0kn10 \le k \le n - 1).

For each test case, print nn distinct integers from 11 to nn, denoting the order in which Monocarp should solve the problems. If there are multiple answers, print any of them.

It can be shown that under the constraints of the problem, the answer always exists.

Input

The first line contains one integer tt (1t10001 \le t \le 1000) — the number of test cases.

Each test case consists of one line containing two integers nn and kk (2n502 \le n \le 50; 0kn10 \le k \le n - 1).

Output

For each test case, print nn distinct integers from 11 to nn, denoting the order in which Monocarp should solve the problems. If there are multiple answers, print any of them.

It can be shown that under the constraints of the problem, the answer always exists.

Sample Input 1

3
6 2
5 4
5 0

Sample Output 1

3 5 4 1 6 2
1 2 3 4 5
5 4 3 2 1