#P1392H. ZS Shuffles Cards
ZS Shuffles Cards
No submission language available for this problem.
Description
zscoder has a deck of custom-made cards, which consists of cards labelled from to and jokers. Since zscoder is lonely, he wants to play a game with himself using those cards.
Initially, the deck is shuffled uniformly randomly and placed on the table. zscoder has a set which is initially empty.
Every second, zscoder draws the top card from the deck.
- If the card has a number written on it, zscoder removes the card and adds to the set .
- If the card drawn is a joker, zscoder places all the cards back into the deck and reshuffles (uniformly randomly) the cards to form a new deck (hence the new deck now contains all cards from to and the jokers). Then, if currently contains all the elements from to , the game ends. Shuffling the deck doesn't take time at all.
What is the expected number of seconds before the game ends? We can show that the answer can be written in the form where are relatively prime integers and . Output the value of modulo .
The only line of the input contains two integers and ().
Output a single integer, the value of modulo .
Input
The only line of the input contains two integers and ().
Output
Output a single integer, the value of modulo .
Samples
Note
For the first sample, it can be proven that the expected time before the game ends is seconds.
For the second sample, it can be proven that the expected time before the game ends is seconds.