There has been a selection process in your company. According to the evaluation criteria, there is a tie between $$$n$$$ candidates. For the final selection phase, your Human Resources coordinator has designed a game to possibly filter some of them since they want to reduce the personnel cost.
The game goes as follows:
Given the scenario of the game, compute the candidates that will be hired according to the game.
The first line of input contains three integers $$$n$$$, $$$r$$$ and $$$c$$$ ($$$1 \leq n \leq 10^{4}$$$ and $$$1 \leq r, c \leq 10^{5}$$$) — The number of candidates, the number of candidates that $$$s_{1}$$$ counts while moving and the number of candidates that $$$s_{2}$$$ counts while moving, respectively.
Print a single line — The sequence of ids of the hired candidates in ascending order.
5 3 3
2 3 4
4 4 3
1 3
6 5 2
1 2 5 6
The following is the process of the game until it stops for the first sample case:

The candidate with id $$$3$$$ is hired after the first iteration, then the candidates with ids $$$1$$$ and $$$5$$$ are removed and rejected after the second iteration and only the candidates with ids $$$2$$$ and $$$4$$$ are left. Since there are only $$$2$$$ candidates, the game stops and both of them are hired. In the end, the candidates with ids $$$2$$$, $$$3$$$ and $$$4$$$ are hired.