Sasha and Ira are two best friends. But they aren't just friends, they are software engineers and experts in artificial intelligence. They are developing an algorithm for two bots playing a two-player game. The game is cooperative and turn based. In each turn, one of the players makes a move (it doesn't matter which player).
Algorithm for bots that Sasha and Ira are developing works by keeping track of the state the game is in. Each time either bot makes a move, the state changes. And, since the game is very dynamic, it will never go back to the state it was already in at any point in the past.
Sasha and Ira are perfectionists and want their algorithm to have an optimal winning strategy. They have noticed that in the optimal winning strategy, both bots make exactly moves each. But, in order to find the optimal strategy, their algorithm needs to analyze all possible states of the game (they haven't learned about alpha-beta pruning yet) and pick the best sequence of moves.
They are worried about the efficiency of their algorithm and are wondering what is the total number of states of the game that need to be analyzed?
Input Specification
The first and only line contains integer .
Output Specification
Output should contain a single integer – number of possible states modulo .
Constraints
Sample Input
2
Sample Output
19
Explanation
Start: Game is in state .
Turn : Either bot can make a move (first bot is red and second bot is blue), so there are two possible states after the first turn – and .
Turn : In both states and , either bot can again make a turn, so the list of possible states is expanded to include , , and .
Turn : Red bot already did moves when in state , so it cannot make any more moves there. It can make moves when in state , and , so states , and are added to the list. Similarly, blue bot cannot make a move when in state , but can when in , and , so states , and are added.
Turn 4: Red bot already did moves when in states , and , so it can only make moves when in , and , so states , and are added. Blue bot cannot make a move when in states , and , but only when in , and , so states , and are added.
Overall, there are possible states of the game their algorithm needs to analyze.
Comments