#R1011. [KBC001C] Flowers

[KBC001C] Flowers

Problem Statement

Little A likes making flower baskets, so today he is going to pick some flowers.

Because Little A loves mathematics, the number of flowers he picks in each pile must be a non-even prime number. He picked NN piles of flowers, with a total of MM flowers. How many different possibilities are there for the number of flowers in each pile? Please list them separately.

Constraints

  • 1N201 \leq N \leq 20
  • 1M3001 \leq M \leq 300

Input

The input consists of a single line containing two integers NN and MM, representing the number of piles of flowers picked by Little A and the total number of flowers, respectively.

Output

The output consists of several lines.

The first line contains an integer KK, which represents the number of different possibilities for the number of flowers in each pile picked by Little A.

The following KK lines, each containing NN numbers, represent the number of flowers in each pile for the ii-th possibility.

If K=0K=0, output a single line with the string No Answer. (There is a dot at the end of No Answer.).

Input #1

2 32

Output #1

2
3 29
13 19

Input #2

7 128

Output #2

No Answer.