Given a first-half score, the number of possibilities is the number of distinct orders in which the goals could have been scored: if one team scored $A$ goals and the other scored $B$ goals, it equals $\binom{A+B}{A}$. For each score, decide whether this number of possibilities equals the sum $A+B$.
The input consists of one or more test cases. Each test case is a single line with two natural numbers $A$ and $B$ (separated by one or more spaces) giving the first-half score. No team scores more than $10$ goals, so $0 \le A, B \le 10$. Input ends with a line containing two values of $-1$, which is not part of the test cases.
For each test case, if the number of possibilities equals the sum, print:
A+B=C
where $A$ and $B$ are the two scores and $C$ is their sum. If the number of possibilities is not equal to the sum, replace the = sign with !=.