J. Elves' Competition
Grandpa Frost is organizing a football tournament for the elves.
He has elves, each uniquely numbered from to . In any match between two elves, the elf with the higher number always wins.
The tournament follows these rules: All elves line up in a row. The first elf competes against the second, the third against the fourth, and so on. In each pair, the losing elf is eliminated, and the winners form a new row by closing ranks. For instance, if the row is , elves numbered and are eliminated, leaving . This process repeats times until only one elf remains, who is declared the winner.
You are a fan of the elf numbered , who is celebrating their th birthday today. As a gift, you need to arrange the initial row of elves so that the elf numbered wins exactly matches during the tournament.
Input
The first line contains three integers , , and (, , ).
Output
If no such initial arrangement exists, output a single integer .
Otherwise, output numbers — the numbers of the elves in the desired initial row.
If multiple valid arrangements exist, you may output any one of them.
Examples
Note
In the first example, the sequence of rows is: .
In the second example, the sequence of rows is: .