This is an interactive problem. If you are not familiar with this type of problem, it is recommended to read the following guide: https://codeforces.me/blog/entry/45307
Kaladin is participating in a game by the famous YouTuber Mr. Besta. The game works as follows:
The host of the game challenges Kaladin to guess which door hides the car. The game follows these steps:
Kaladin will participate in the game $$$N=10000$$$ times in a row. He will only win the car if he guesses correctly at least $$$6500$$$ out of the $$$N$$$ games. Your task is to implement a strategy to help Kaladin win the car.
This is an interactive question. Remember to always "flush" the output with "std::endl" or cout.flush()
The input is interactive and follows this format:
Note that there is only 1 test case, so there is no test input!
You should not produce direct standard output, except for the interaction with the system described in the input section. Your strategy will be evaluated at the end. Kaladin will win the car if he guesses correctly at least $$$6500$$$ times in $$$N = 10000$$$ games.
For example, suppose there is only $$$1$$$ test case and the game occurred as follows:
Input/Judge
1
2
1
Kaladin:
1
1
It is guaranteed that there is only $$$1$$$ test case, and that the input is random.