{"raw_statement":[{"iden":"problem statement","content":"This is an **interactive task** (where your program interacts with the judge's program via Standard Input and Output).\nYou are given integers $N$, $L$, and $R$.  \nYou play the following game against the judge:\n\n> There are $N$ cards numbered $1$ through $N$ on the table.  \n> The players alternately perform the following operation:\n> \n> *   choose an integer pair $(x, y)$ satisfying $1 \\leq x \\leq N$, $L \\leq y \\leq R$ such that all of the $y$ cards $x, x+1, \\dots, x+y-1$ remain on the table, and remove cards $x, x+1, \\dots, x+y-1$ from the table.\n> \n> The first player to become unable to perform the operation loses, and the other player wins.\n\nChoose whether to go first or second, and play the game against the judge to win."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 2000$\n*   $1 \\leq L \\leq R \\leq N$\n*   $N$, $L$, and $R$ are integers."},{"iden":"input and output","content":"This is an interactive task (where your program interacts with the judge's program via Standard Input and Output).\nInitially, receive $N$, $L$, and $R$, given from the input in the following format:\n\n$N$ $L$ $R$\n\nFirst, you choose whether to go first or second. Print `First` if you choose to go first, and `Second` if you choose to go second.\nThen, the game immediately starts. If you choose to go first, the judge goes second, and vice versa. You are to interact with the judge via input and output until the game ends to win the game.\nIn your turn, print an integer pair $(x, y)$ that you choose in the operation in the following format. If there is no $(x, y)$ that you can choose, print $(x, y) = (0, 0)$ instead.\n\n$x$ $y$\n\nIn the judge's turn, the judge print an integer pair $(a, b)$ in the following format:\n\n$a$ $b$\n\nHere, it is guaranteed that $(a, b)$ is of one of the following three kinds.\n\n*   If $(a, b) = (0, 0)$: the judge is unable to perform the operation. In other words, you have won the game.\n*   If $(a, b) = (-1, -1)$: you have chosen an illegal $(x, y)$ or printed $(0, 0)$. In other words, you have lost the game.\n*   Otherwise: the judge has performed the operation with $(x,y) = (a,b)$. It is guaranteed that judge chooses valid $(x, y)$.\n\nIf the judge returns $(a,b)=(0,0)$ or $(a,b)=(-1,-1)$, the game has already ended. In that case, terminate the program immediately."},{"iden":"notes","content":"*   **After each output, add a newline and then flush Standard Output. Otherwise, you may get a TLE verdict.**\n*   **If an invalid output is printed during the interaction, or if the program terminates halfway, the verdict will be indeterminate.** Especially, note that if a runtime error occurs during the execution of the program, you may get a WA or TLE verdict instead of a RE verdict.\n*   Terminate the program immediately after the game ends. Otherwise, the verdict will be indeterminate."},{"iden":"sample interaction","content":"The following is a sample interaction where $N = 6, L = 1$, and $R = 2$.\n\nInput\n\nOutput\n\nDescription\n\n`6 1 2`\n\nInitially, you are given integers $N$, $L$, and $R$.\n\n`First`\n\nYou choose to go first and start the game.\n\n`2 1`\n\n$(x, y) = (2, 1)$ is chosen to remove card $2$.\n\n`3 2`\n\n$(x, y) = (3, 2)$ is chosen to remove cards $3, 4$.\n\n`6 1`\n\n$(x, y) = (6, 1)$ is chosen to remove card $6$.\n\n`5 1`\n\n$(x, y) = (5, 1)$ is chosen to remove card $5$.\n\n`1 1`\n\n$(x, y) = (1, 1)$ is chosen to remove card $1$.\n\n`0 0`\n\nThe judge is unable to perform the operation, so you win."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}