You are given three piles of stones. Each having A, B and C stones. You can do the following operation multiple times (maybe zero):
- Select two non-empty piles, remove one stone from each selected pile and add those two stones to the third pile (the one you did not select).
The goal is to put all stones in a single pile. Can you do it?
Output
For each test case:
Output on a single line "Yes" (without quotes) if there is a way to put all stones in one pile. Otherwise, output "No" (without quotes).
If there is a solution, on the following line output a string S (|S|=m,0≤m≤2⋅104). Each character Si (1≤i≤m) of the string will be "A", "B" or "C", denoting the id of the third pile (the one you did not select) in the i-th operation (if the string is empty output a single empty line).
It is guaranteed that, if a solution exists, then there is a construction that uses at most 2⋅104 operations.