Sign of Operation

No attempts yetTime limit1sMemory limit128 MB

Problem

You are given two integers aa and bb. Insert one of the operators +, -, or * between them so that the value of the resulting expression is as large as possible. If that largest value can be reached by more than one operator, print NIE instead.

Input

A single line contains two integers aa and bb (104a,b104-10^4 \le a, b \le 10^4).

Output

Print the expression that yields the largest value, in the form a<operator>b=result, on one line. Wrap a negative operand in parentheses (for example (-5)). Do not put the result in parentheses. If more than one operator produces the largest value, print NIE instead.