Limits 1s, 512 MB

Neema and Mouri loves to collect coins. When they get bored, they bring out all of their coins. Usually, they count their coins as entertainment. But counting coins are monotonous at times, and soon they loose interest. So, they have decided to play a new game with the coins, a game that would keep them busy for a longer period of time.

In this game, Neema and Mouri place all the coins side by side in a line. Then they start picking coins sequentially from left to right. Both Neema and Mouri takes turn alternatively and Neema goes first. In each turn, one of them pick two or more coins from the left side of the line and remove them. The game ends when there are no coins left. There are situations when they have only 1 coin left after some turns. If this scenario occurs, they call this an invalid game and start off their game again.

Given the number of coins that Neema has and the number of coins that Mouri has, you have to determine the number of ways this game can end in a valid way. Two ways are considered different, if:

  1. Two games differ by the number of moves.
  2. Two games have the same number of moves, but there is at least one move i, in which the number of coins taken in the first game is not equal to the number of coins taken in the second game.

Input

The only line contains two integers N and M ( 1 ≤ N , M ≤ 102 ), the total number of coins that Neema and Mouri possesses respectively. Please note that Neema and Mouri's coins are indistinguishable once they are placed in the line.

Output

For each input, print one line, the number of ways the game can be played in a valid way. Since the answer can be large, print the reminder of the answer when divided with 100.

Sample

InputOutput
1 1
1

Submit

Login to submit.

Statistics

66% Solution Ratio
Sherlock221bEarliest, Feb '17
Sherlock221bFastest, 0.0s
Sherlock221bLightest, 131 kB
ruhanhabib39Shortest, 337B
Toph uses cookies. By continuing you agree to our Cookie Policy.