CF1325D Ehab the Xorcist
Description
Given 2 integers $ u $ and $ v $ , find the shortest array such that [bitwise-xor](https://en.wikipedia.org/wiki/Bitwise_operation#XOR) of its elements is $ u $ , and the sum of its elements is $ v $ .
Input Format
N/A
Output Format
N/A
Explanation/Hint
In the first sample, $ 3\oplus 1 = 2 $ and $ 3 + 1 = 4 $ . There is no valid array of smaller length.
Notice that in the fourth sample the array is empty.