This is an interactive problem.
You are Professor Utonium, the brilliant scientist of Townsville. You were about to start your project of creating the 'perfect little girls'. Unfortunately, you discover that your lab assistant Jojo has removed all the labels from the chemical containers in the lab.
Now, you have $$$N$$$ unlabeled chemicals, numbered from $$$1$$$ to $$$N$$$. Among them are two very dangerous chemicals – Chemical X and Chemical Y. When these two are mixed in the same mixture, they react explosively.
To identify the exact indices of Chemical X and Chemical Y, you'll need to carry out a series of controlled experiments. In each experiment, you may mix a subset of the chemicals in a secure environment. If both Chemical X and Chemical Y are present in the mixture, it results in "Kaboom" – an explosion! If not, you'll simply observe a "Noboom", meaning the mixture is stable.
But there's a catch — you can perform at most $$$20$$$ experiments before the Mayor and Miss Bellum shut the lab down for safety violations!
The first line of the input contains a single integer $$$N$$$ ($$$2 \le N \le 1000$$$) — the number of chemicals in the lab.
The interaction begins by reading the value of $$$N$$$.
After that, the experiments begin.
For performing an experiment, output $$$(m + 1)$$$ integers $$$(1 \le m \le N)$$$ in a line in the following format (without the quotes):
Here, $$$\{c_1, c_2, \dots, c_m\}$$$ are the indices of the $$$m$$$ selected chemicals for the mixture. After each experiment, the judge will respond with:
After performing at most $$$20$$$ experiments, you must output your final answer in a line in the following format (without the quotes):
Here, $$$x$$$ and $$$y$$$ are the indices of the explosive chemicals.
After printing a line, do not forget to output the end of the line and flush the output. Otherwise, you will get Idleness Limit Exceeded. To flush the output, you can use:
10 Noboom Kaboom Noboom Noboom Kaboom Noboom
? 3 1 2 3 ? 5 1 2 3 4 5 ? 2 4 5 ? 2 1 5 ? 3 2 3 4 ? 2 3 4 ! 2 4
| Name |
|---|


