PROGRAMMING:Count 24 with playing cards
Each card of a deck of playing cards represents a number (J, Q and K represent 11, 12 and 13 respectively, and both commanders represent 6). If you take any four cards, you will get four numbers from 1 to 13. Please add operators (specified as add + subtract multiply * divide / four) to make it an expression. Each number can only participate in one operation. The order of four numbers can be arbitrarily combined, and three of the four operators can be selected and repeated. The operation obeys a certain priority and can be controlled by adding brackets, so that the final operation result is 24. Please output the expression of a solution, using parentheses to indicate that the operation takes precedence. If there is no solution, output - 1 means no solution.
###Input format:
Input 4 integers in one line, and the value of each integer is in [1,13].
###Output format:
Output the expression of any solution, and use brackets to indicate the priority of operation. If there is no solution, output - 1.
###Input example:
```in
2 3 12 12
```
###Output example:
```out
((3-2)*12)+12
```
answer:If there is no answer, please comment
###Input format:
Input 4 integers in one line, and the value of each integer is in [1,13].
###Output format:
Output the expression of any solution, and use brackets to indicate the priority of operation. If there is no solution, output - 1.
###Input example:
```in
2 3 12 12
```
###Output example:
```out
((3-2)*12)+12
```
answer:If there is no answer, please comment