Problem: You are given a set of all integers from to inclusive, , and is always odd.
You want to split these numbers into exactly pairs in such a way that for each pair the greatest common divisor of and is equal to . 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 Format: The only line contains two integers and (, , is odd).
Output Format: If any solution exists, print "YES" in the first line. Each of the next lines should contain some pair of integers. GCD of numbers in each pair should be equal to . All numbers should be pairwise distinct and should have values from to inclusive.
If there are multiple solutions, print any of them.
If there exists no solution, print "NO".