Score : 100 points
You are given two integers a and b. Determine if a+b=15 or a\times b=15 or neither holds.
Note that a+b=15 and a\times b=15 do not hold at the same time.
Input is given from Standard Input in the following format:
a b
If a+b=15, print +
;
if a\times b=15, print *
;
if neither holds, print x
.
4 11
+
4+11=15.
3 5
*
3\times 5=15.
1 1
x
1+1=2 and 1\times 1=1, neither of which is 15.