#D2717. Relatively Prime Pairs
Relatively Prime Pairs
Relatively Prime Pairs
You are given a set of all integers from l to r inclusive, l < r, (r - l + 1) ≤ 3 ⋅ 10^5 and (r - l) is always odd.
You want to split these numbers into exactly (r - l + 1)/(2) pairs in such a way that for each pair (i, j) the greatest common divisor of i and j is equal to 1. Each number should appear in exactly one of the pairs.
Print the resulting pairs or output that no solution exists. If there are multiple solutions, print any of them.
Input
The only line contains two integers l and r (1 ≤ l < r ≤ 10^{18}, r - l + 1 ≤ 3 ⋅ 10^5, (r - l) is odd).
Output
If any solution exists, print "YES" in the first line. Each of the next (r - l + 1)/(2) lines should contain some pair of integers. GCD of numbers in each pair should be equal to 1. All (r - l + 1) numbers should be pairwise distinct and should have values from l to r inclusive.
If there are multiple solutions, print any of them.
If there exists no solution, print "NO".
Example
Input
1 8
Output
YES 2 7 4 1 3 8 6 5
inputFormat
outputFormat
output that no solution exists. If there are multiple solutions, print any of them.
Input
The only line contains two integers l and r (1 ≤ l < r ≤ 10^{18}, r - l + 1 ≤ 3 ⋅ 10^5, (r - l) is odd).
Output
If any solution exists, print "YES" in the first line. Each of the next (r - l + 1)/(2) lines should contain some pair of integers. GCD of numbers in each pair should be equal to 1. All (r - l + 1) numbers should be pairwise distinct and should have values from l to r inclusive.
If there are multiple solutions, print any of them.
If there exists no solution, print "NO".
Example
Input
1 8
Output
YES 2 7 4 1 3 8 6 5
样例
1 8
YES
1 2
3 4
5 6
7 8
</p>