COCI '19 Contest 1 #2 Lutrija

View as PDF

Submit solution


Points: 12
Time limit: 1.0s
Memory limit: 512M

Problem type

Grandpa Vedran is watching his favourite 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.

Input

The first line contains two prime numbers A and B (2 \le A, B \le 10^{14}, A \ne B) from the task description.

Output

If the task is impossible, i.e., there is no array satisfying the conditions from the 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 the 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.

Scoring

In test cases worth a total of 20% of the points, it will hold that if a solution exists, there is at least one such that the number of elements in the resulting array is not greater than 3 and all of its elements are not greater than 1000. In test cases worth additional 40% of the points, it will hold that 2 \le A, B \le 1000.

Sample Input 1

13 11

Sample Output 1

2
13 11

Sample Input 2

37 11

Sample Output 2

-1

Sample Input 3

2 17

Sample Output 3

3
2 19 17

Comments

There are no comments at the moment.