TopCoder

User's AC Ratio

NaN% (0/0)

Submission's AC Ratio

NaN% (0/0)

Tags

Description

On birthday, Anthony got a toy. It is constructed with N+1 ( N>=3) balls and 2N sticks. All balls are in a same plane. One of them is special, while the other N balls are connected to it by N sticks with the same length. The angles between any two adjacent sticks are equal. And finally, any two adjacent balls(except the central one) are connected by a stick. Here are two examples:


Anthony wanted to remove N sticks, leaving all balls still connected. He wanted to know the number of all legal solutions. Your task is to solve this problem for him.


Notice that if a solution will be the same as another one by rotation, these two solutions should be consider as the same.


The answer may be quite large. You just need to calculate the remainder of the answer when divided by M.

Input Format

Input contains several test cases.


For each test case, there is only one line containing two integers N and M (3<=N<=109, 2<=M<=109).


Input is terminated when N = M = 0.

Output Format

For each case, output one integer in one line, representing the remainder of the number of all solutions when divided by M.

Sample Input 1

3 10000 
4 10000 
4 10
0 0

Sample Output 1

6
13
3

Hints

Problem Source

Migrated from old NTUJ.

ICPC Chengdu, 2008

Subtasks

No. Testdata Range Score

Testdata and Limits

No. Time Limit (ms) Memory Limit (VSS, KiB) Output Limit (KiB) Subtasks
0 10000 65536 200