You are given a sequence named

of length

and an integer

. You will do the following operations to maintain a subset

of

:
1. Let

, if
%5C%20%5Ctext%7Bmod%7D%5C%2012%3D0)
, then stop.
2. Choose a random integer

that

and

with equal probability.
3. Choose a random integer

that

with equal probability, and if

, choose a random integer in

with equal probability and delete it from

.
4. Add

into

.
5. Go to the operation

.
Here, we use the following rules to determine

: if there's nothing in

, then

; else if it's possible to stop the procedure ( maybe after doing several operations in the future ) after adding

into

without deleting anything , then

; else

.
You want to know the expected number of times to do the operation

. Please print the answer in a single line modulo

. It can be proved that the answer is a rational number, or you can never stop doing those operations.
Note: If your answer is

, then you need to find a integer

such that

. Print this

.