Time Limit : sec, Memory Limit : KB
English / Japanese  

Sunrise and Sunset

When the sun appears, it is called "sunrise" and when it disappears, it is called "sunset," but what is the exact time when the sun is positioned relative to the horizon?

As shown in the figure below, the sun is represented by a circle and the horizon by a straight line. The time of sunrise and sunset is the moment when the upper edge of the circle representing the sun touches the straight line representing the horizon. After the time of sunrise, the time when the upper edge of the circle is above the straight line is daytime, and the time when the circle is completely hidden below the straight line is night.


Given the height from the horizon to the center of the sun at a given time and the radius of the sun, make a program to output whether the time is "daytime," "sunrise or sunset," or "night."

Input

The input is given in the following format

H R

The input consists of one line, with an integer H (-1000 ≤ H ≤ 1000) representing the height from the horizon to the center of the sun at a given time, and an integer R (1 ≤ R ≤ 1000) representing the radius. However, H is zero when the center of the sun is on the horizon, positive when it is above the horizon, and negative when it is below the horizon.

Output

Output "1" for daytime, "0" for sunrise or sunset, and "-1" for night in a line.

Sample Input 1

-3 3

Sample Output 1

0

Sample Input 2

3 3

Sample Output 2

1

Sample Input 3

-4 3

Sample Output 3

-1