You are given a matrix $A$ where each cell has a value of $0$, $1$ or $2$. We want to divide the matrix into two parts, from the vertex at position $(0,0)$ to the vertex at $(n, m)$ by a sequence of edges, in such a way that edge $a$ precedes edge $b$, if $b$ is to the right or below of $a$ and they share the vertex on the right or below of edge $a$. Is it possible to do the division in such a way that on both sides the sum of the values of the cells are the same?
Example test case 3
Output
Print 'YES' if it is possible to find a path that satisfies the conditions described above; otherwise print 'NO'. If the answer is 'YES', print a second line with a string of length $n+m$ consisting of characters `R' (right) or `D' (down) that describes a possible path. If there are multiple paths satisfying the above conditions, print any of them.