#abc079c. [abc079_c]Train Ticket

[abc079_c]Train Ticket

Problem Statement

Sitting in a station waiting room, Joisino is gazing at her train ticket.

The ticket is numbered with four digits AA, BB, CC and DD in this order, each between 00 and 99 (inclusive).

In the formula AA op1op1 BB op2op2 CC op3op3 DD \= 77, replace each of the symbols op1op1, op2op2 and op3op3 with + or - so that the formula holds.

The given input guarantees that there is a solution. If there are multiple solutions, any of them will be accepted.

Constraints

  • 0A,B,C,D90≤A,B,C,D≤9
  • All input values are integers.
  • It is guaranteed that there is a solution.

Input

Input is given from Standard Input in the following format:

ABCDABCD

Output

Print the formula you made, including the part =7.

Use the signs + and -.

Do not print a space between a digit and a sign.


Sample Input 1

1222

Sample Output 1

1+2+2+2=7

This is the only valid solution.


Sample Input 2

0290

Sample Output 2

0-2+9+0=7

02+90=70 - 2 + 9 - 0 = 7 is also a valid solution.


Sample Input 3

3242

Sample Output 3

3+2+4-2=7