#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 piles of flowers, with a total of flowers. How many different possibilities are there for the number of flowers in each pile? Please list them separately.
Constraints
Input
The input consists of a single line containing two integers and , 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 , which represents the number of different possibilities for the number of flowers in each pile picked by Little A.
The following lines, each containing numbers, represent the number of flowers in each pile for the -th possibility.
If , 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.