题目描述
<div class='text-center'><img src='/userfiles/images/b057625d-0c40-44c6-b20a-ab7db54dd382.png'/></div>
Grandpa Vedran is watching his favorite lottery show on TV in the hopes of becoming an overnight millionaire. The lottery balls are spinning and bouncing around before yielding the following draw: $2$, $5$, $7$, $11$, $19$, $23$ and $31$.
Vedran sighs as he didn't guess a single one of those numbers. “Looks like I'm past my prime...”, he thought to himself while turning off the old TV. His vision is also getting worse, so he pressed the wrong button on the remote control and switched to the COCI channel.
The host, Mr. Malnar, calmly spoke: “Dear viewers, on the left side of the screen I will show you a prime number $A$ and on the right side of the screen I will show you a prime number $B$. The first person that calls in with an array of prime numbers which starts with $A$, ends with $B$ and has a prime absolute difference between each two neighbouring elements will receive a free trip to IOI 2020 in Singapore.”
Old Vedran is reminiscing about his glory days of being a competitive programmer. Unfortunately, he is rusty and is not able to solve the problem. Being kindhearted, you decide to help Vedran win a trip to Singapore.
**Note:** A prime number is a positive integer greater than $1$ that is only divisible by $1$ and itself.
输入格式
The first line contains two prime numbers $A$ and $B$ $(2 \le A, B \le 10^{14},\ A \ne B)$ from the task description.
输出格式
If the task is impossible, i.e., there is no array satisfying the conditions from task statement, simply output `-1` in a single line.
Otherwise, in the first line output the number of elements in the array and in the second line output its elements separated by spaces. The size of array must not be greater than $30$ and its elements must not be greater than $10^{15}$. It is guaranteed that, if a solution exists, there is at least one satisfying those bounds.
If there are multiple correct solutions, output any of them.
样例输入 #1
13 11
样例输出 #1
2 13 11
样例输入 #2
37 11
样例输出 #2
-1
样例输入 #3
2 17
样例输出 #3
3 2 19 17
来源
COCI 2019/2020 CONTEST #1