#abc216a. [abc216_a]Signed Difficulty

[abc216_a]Signed Difficulty

Problem Statement

You are given a real number X.YX.Y, where YY is a single digit.

Print the following: (quotes for clarity)

  • XX-, if 0leqYleq20 \\leq Y \\leq 2;
  • XX, if 3leqYleq63 \\leq Y \\leq 6;
  • XX+, if 7leqYleq97 \\leq Y \\leq 9.

Constraints

  • 1leqXleq151 \\leq X \\leq 15
  • 0leqYleq90 \\leq Y \\leq 9
  • XX and YY are integers.

Input

Input is given from Standard Input in the following format:

X.YX.Y

Output

Print the answer.


Sample Input 1

15.8

Sample Output 1

15+

Here, printing 15 + will not be accepted: do not print a space between XX and +, or between XX and -.


Sample Input 2

1.0

Sample Output 2

1-

You will not get inputs such as 1.00 and 1.


Sample Input 3

12.5

Sample Output 3

12