C. Library game
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Alessia and Bernardo are discovering the world of competitive programming through the books of their university library.

The library consists of $$$m$$$ sections numbered from $$$1$$$ to $$$m$$$. Each section contains only books dedicated to a particular subject and different sections correspond to different subjects. In order to prevent the students from wandering in the library, the university has established a system of passes. Each pass has a length $$$y$$$ associated to it and allows access to an interval of $$$y$$$ consecutive sections in the library. During a visit, the student must choose exactly one book from one of these sections and leave the library. Each pass can be used only once.

At the moment Alessia and Bernardo have $$$n$$$ passes of lengths $$$x_1, \, x_2, \, \dots, \, x_n$$$. They have different opinions on the best way to improve: Alessia thinks that it is important to study many different topics, while Bernardo believes that it is important to study deeply at least one topic. So, Alessia wants to use the $$$n$$$ passes to get $$$n$$$ books on distinct topics, while Bernardo would like to get at least two books on the same topic.

They have reached the following agreement: for each of the following $$$n$$$ days, Alessia will choose a pass of length $$$y$$$ among those which are still available and an interval of $$$y$$$ sections in the library, and Bernardo will go into the library and will take exactly one book from one of those sections.

Can Bernardo manage to get at least two books on the same subject, or will Alessia be able to avoid it?

You should decide whether you want to be Alessia or Bernardo, and you have to fulfill the goal of your chosen character. The judge will impersonate the other character. Note that, even if at some moment Bernardo has already taken two books on the same subject, the interaction should go on until the end of the $$$n$$$ days.

Input

The first line contains two integers $$$n$$$ and $$$m$$$ ($$$1 \le n \le 100$$$, $$$n \le m \le 5000$$$) — the number of passes and the number of sections.

The second line contains $$$n$$$ integers $$$x_1, \, x_2, \, \dots, \, x_n$$$ ($$$1 \le x_i \le m$$$) — the lengths of the passes available.

Interaction

First, you should print a line containing either the string $$$\texttt{Alessia}$$$ or the string $$$\texttt{Bernardo}$$$ — the character that you want to impersonate.

Then, for each of the $$$n$$$ turns:

  • If you are taking the role of Alessia, print a single line consisting of two integers $$$y$$$ and $$$a$$$ ($$$1 \le a \le m - y + 1$$$) — you are choosing a pass of length $$$y$$$ and the interval of sections $$$[a, a + y - 1]$$$. Note that at least one pass of length $$$y$$$ must still be available. After this, read a single integer $$$b$$$ ($$$a \le b \le a + y - 1$$$) — the subject of the book selected by Bernardo.
  • If you are taking the role of Bernardo, read two integers $$$y$$$ and $$$a$$$ ($$$1 \le a \le m - y + 1$$$) — the length of the pass chosen by Alessia and the index of the first section of the interval. It is guaranteed that there is at least one pass of length $$$y$$$ available. Then, print a line consisting of a single integer $$$b$$$ ($$$a \le b \le a + y - 1$$$) — the subject from which you choose to take a book.

If one of your interactions is malformed, the interactor terminates immediately and your program receives the verdict $$$\texttt{WRONG-ANSWER}$$$. Otherwise, you will receive the verdict according to the game's criteria described above.

After printing a line do not forget to end the line and flush the output. Otherwise, you will get the verdict $$$\texttt{TIMELIMIT}$$$. To flush the output, use:

  • $$$\texttt{fflush(stdout)}$$$ in C;
  • $$$\texttt{fflush(stdout)}$$$, $$$\texttt{cout <}\texttt{< flush}$$$ or $$$\texttt{cout.flush()}$$$ in C++;
  • $$$\texttt{System.out.flush()}$$$ in Java and Kotlin;
  • $$$\texttt{sys.stdout.flush()}$$$ in Python.
Examples
Input
5 14
3 7 2 3 10
Output
-
Input
4 10
4 1 6 4
Output
-
Note

In the first sample, it can be shown that Alessia can accomplish her goal. An example of interaction (after reading the input) follows:

$$$$$$ \begin{array}{|c|c|c|} \hline \textbf{Contestant} & \textbf{Judge} & \textbf{Explanation} \\ \hline \texttt{Alessia} & & \text{The program will act as Alessia} \\ \hline 3 \quad 11 & & \text{Choose $y = 3$ and $a = 11$} \\ \hline & 13 & \text{Judge selects $b = 13$} \\ \hline 10 \quad 2 & & \text{Choose $y = 10$ and $a = 2$} \\ \hline & 9 & \text{Judge selects $b = 9$} \\ \hline 7 \quad 1 & & \text{Choose $y = 7$ and $a = 1$} \\ \hline & 4 & \text{Judge selects $b = 4$} \\ \hline 2 \quad 10 & & \text{Choose $y = 2$ and $a = 10$} \\ \hline & 10 & \text{Judge selects $b = 10$} \\ \hline 3 \quad 6 & & \text{Choose $y = 3$ and $a = 6$} \\ \hline & 7 & \text{Judge selects $b = 7$} \\ \hline \end{array} $$$$$$

The program of the contestant wins because all the books chosen by Bernardo pertain to different topics. The actions performed by the contestant and the judge in this example of interaction may be non-optimal.

In the second sample, it can be shown that Bernardo can manage to fulfil his goal. An example of interaction (after reading the input) follows:

$$$$$$ \begin{array}{|c|c|c|} \hline \textbf{Contestant} & \textbf{Judge} & \textbf{Explanation} \\ \hline \texttt{Bernardo} & & \text{The program will act as Bernardo} \\ \hline & 4 \quad 1 & \text{Judge chooses $y = 4$ and $a = 1$} \\ \hline 4 & & \text{Select $b = 4$} \\ \hline & 1 \quad 10 & \text{Judge chooses $y = 1$ and $a = 10$} \\ \hline 10 & & \text{Select $b = 10$} \\ \hline & 6 \quad 3 & \text{Judge chooses $y = 6$ and $a = 3$} \\ \hline 4 & & \text{Select $b = 4$} \\ \hline & 4 \quad 5 & \text{Judge chooses $y = 4$ and $a = 5$} \\ \hline 8 & & \text{Select $b = 8$} \\ \hline \end{array} $$$$$$

The program of the contestant wins because Bernardo has selected two books on topic number $$$4$$$. The actions performed by the contestant and the judge in this example of interaction may be non-optimal.