Nick is a mathematician and his speciality is Boolean logic, especially repetition-free functions. The Boolean function is repetition-free if it can be represented as a repetition-free formula. Formula is repetition-free if each variable occurs in the formula only once.
Let us fix the syntax of considered logical formulae:
The operations are listed from the highest priority to the lowest.
The problem is to represent given Boolean function by a repetition-free formula.
The only line of input contains the Boolean function represented as a string consisting of characters ‘a’..‘k’, ‘(’, ‘)’, ‘~’, ‘&’ and ‘|’. The last three tokens stand for ¬, ∧ and ∨ respectively. Tokens can be separated by an arbitrary number of spaces. The line contains
The first line of the output file must contain “Yes” if function is repetition-free and “No” otherwise.
In the former case the following line must contain the repetition-free formula for given Boolean function in the same format as in the input file. The line must contain no more than
<table style="border-color: black; border-collapse: collapse;" border="1"><tr><th>#1</th><td>(a | b) & (a | c)</td></tr><tr><th>#2</th><td>d&~d</td></tr><tr><th>#3</th><td>d & ~d | ~((a|~b) & (a|c))</td></tr><tr><th>#4</th><td>a & b | ~ a & ~b</td></tr></table>
<table style="border-color: black; border-collapse: collapse;" border="1"><tr><th>#1</th><td>Yes<br>a | b & c</td></tr><tr><th>#2</th><td>No</td></tr><tr><th>#3</th><td>Yes<br>~a&(b|~c)</td></tr><tr><th>#4</th><td>No</td></tr></table>