Algorithm


A. Transformation: from A to B
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasily has a number a, which he wants to turn into a number b. For this purpose, he can do two types of operations:

  • multiply the current number by 2 (that is, replace the number x by x);
  • append the digit 1 to the right of current number (that is, replace the number x by 10·x + 1).

You need to help Vasily to transform the number a into the number b using only the operations described above, or find that it is impossible.

Note that in this task you are not required to minimize the number of operations. It suffices to find any way to transform a into b.

Input

The first line contains two positive integers a and b (1 ≤ a < b ≤ 109) — the number which Vasily has and the number he wants to have.

Output

If there is no way to get b from a, print "NO" (without quotes).

Otherwise print three lines. On the first line print "YES" (without quotes). The second line should contain single integer k — the length of the transformation sequence. On the third line print the sequence of transformations x1, x2, ..., xk, where:

  • x1 should be equal to a,
  • xk should be equal to b,
  • xi should be obtained from xi - 1 using any of two described operations (1 < i ≤ k).

If there are multiple answers, print any of them.

Examples
input
Copy
2 162
output
Copy
YES
5
2 4 8 81 162
input
Copy
4 42
output
Copy
NO
input
Copy
100 40021
output
Copy
YES
5
100 200 2001 4002 40021

 



 

Code Examples

#1 Code Example with Python Programming

Code - Python Programming

i, n = map(int, input().split())

check = False
def solve(i, n, p):
    global check
    if i == n:
        check = True
        print("YES")
        print(len(p))
        print(*p)
        return
    if(i < n):
        solve(2*i, n, p + [2*i])
        solve(10*i + 1, n, p + [10*i+1])

#backtracking


solve(i, n, [i])
if not check:
    print("NO">
Copy The Code & Try With Live Editor

Input

x
+
cmd
2 162

Output

x
+
cmd
YES
5
2 4 8 81 162
Advertisements

Demonstration


Codeforcess Solution 727-A A. Transformation: from A to B ,C++, Java, Js and Python ,727-A,Codeforcess Solution

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+