Problem: An integer sequence is called beautiful if the difference between any two consecutive numbers is equal to . More formally, a sequence is beautiful if for all .
Trans has numbers , numbers , numbers and numbers . He wants to construct a beautiful sequence using all of these numbers.
However, it turns out to be a non-trivial task, and Trans was not able to do it. Could you please help Trans?
Input Format: The only input line contains four non-negative integers , , and ().
Output Format: If it is impossible to construct a beautiful sequence satisfying the above constraints, print "NO" (without quotes) in one line.
Otherwise, print "YES" (without quotes) in the first line. Then in the second line print integers, separated by spaces — a beautiful sequence. There should be numbers equal to , numbers equal to , numbers equal to and numbers equal to .
If there are multiple answers, you can print any of them.
Note: In the first test, it is easy to see, that the sequence is beautiful because the difference between any two consecutive numbers is equal to . Also, there are exactly two numbers, equal to , , and exactly one number, equal to .
It can be proved, that it is impossible to construct beautiful sequences in the second and third tests.