This is an interactive problem.
Ivan came up with new rules for the battleship game!
- The game will be played on an n×n board.
- The first player chooses an integer k (n≤k≤⌈2n⌉2).
- After that, the first player places k ships on the board so that the number of cells occupied by the ships is the maximum possible (among all valid placements of k ships of any sizes).
- Each ship should be a rectangle of size 1×a or a×1 (a is any integer from 1 to n inclusive). Any two ships should not have neighbouring cells (by side or by corner).
After that, the second player starts his game.
- The second player knows only the size of the board n.
- The second player can ask a query: is cell (x,y) occupied by some ship?
- The second player should find any empty 2×2 square on the board, or say that there are no such squares.
The second player can ask at most 6n queries. Please play as the second player and win the game!