You are given a real number $X.Y$, where $Y$ is a single digit.
Print the following: (quotes for clarity)
- $X$\-, if $0 \leq Y \leq 2$;
- $X$, if $3 \leq Y \leq 6$;
- $X$+, if $7 \leq Y \leq 9$.
输入格式
Input is given from Standard Input in the following format:
>$X.Y$
#### Constraints
- $1 \leq X \leq 15$
- $0 \leq Y \leq 9$
- $X$ and $Y$ are integers.
输出格式
Print the answer.
样例输入 #1
15.8
样例输出 #1
15+
样例输入 #2
1.0
样例输出 #2
1-
样例输入 #3
12.5
样例输出 #3
12
提示
***For Sample #1:***
Here, printing `15 +` will not be accepted: do not print a space between $X$ and `+`, or between $X$ and `-`.
***For Sample #2:***
You will not get inputs such as `1.00` and `1`.