#D3463. Everything on It

    ID: 2873 Type: Default 4000ms 536MiB

Everything on It

Everything on It

In "Takahashi-ya", a ramen restaurant, basically they have one menu: "ramen", but N kinds of toppings are also offered. When a customer orders a bowl of ramen, for each kind of topping, he/she can choose whether to put it on top of his/her ramen or not. There is no limit on the number of toppings, and it is allowed to have all kinds of toppings or no topping at all. That is, considering the combination of the toppings, 2^N types of ramen can be ordered.

Akaki entered Takahashi-ya. She is thinking of ordering some bowls of ramen that satisfy both of the following two conditions:

  • Do not order multiple bowls of ramen with the exactly same set of toppings.
  • Each of the N kinds of toppings is on two or more bowls of ramen ordered.

You are given N and a prime number M. Find the number of the sets of bowls of ramen that satisfy these conditions, disregarding order, modulo M. Since she is in extreme hunger, ordering any number of bowls of ramen is fine.

Constraints

  • 2 \leq N \leq 3000
  • 10^8 \leq M \leq 10^9 + 9
  • N is an integer.
  • M is a prime number.

Input

Input is given from Standard Input in the following format:

N M

Output

Print the number of the sets of bowls of ramen that satisfy the conditions, disregarding order, modulo M.

Examples

Input

2 1000000007

Output

2

Input

3 1000000009

Output

118

Input

50 111111113

Output

1456748

Input

3000 123456791

Output

16369789

inputFormat

Input

Input is given from Standard Input in the following format:

N M

outputFormat

Output

Print the number of the sets of bowls of ramen that satisfy the conditions, disregarding order, modulo M.

Examples

Input

2 1000000007

Output

2

Input

3 1000000009

Output

118

Input

50 111111113

Output

1456748

Input

3000 123456791

Output

16369789

样例

3 1000000009
118