Mirko and Slavko's favourite pastime is competing against each other in mathematical games. This time they took a heap of
- Mirko is the first to play, then Slavko, then Mirko again, then Slavko and so on;
- Mirko can take any number of pebbles (between
and , inclusive) from the heap during his first move; - In each of the following turns the current player must take at least
pebble and is allowed to take at most double the amount of pebbles taken during the previous turn by the other player; naturally, one cannot take more pebbles than the remaining amount in the heap; - The player who takes the last pebble is the winner.
Both Mirko and Slavko play optimally (if it is possible for one player to beat the other, that player will always win). We need to find the minimum number of pebbles that Mirko must take during his first turn such that he is guaranteed to win the game.
Input Specification
The first and only line of input contains the positive integer
Output Specification
The first and only line of output must contain the required minimum number of pebbles that Mirko needs to remove during his first turn.
Sample Input 1
4
Sample Output 1
1
Explanation for Sample Output 1
Mirko has
Sample Input 2
7
Sample Output 2
2
Sample Input 3
8
Sample Output 3
8
Comments