Quadrant Selection | 프로그래밍의 벗 PivotOJ
PivotOJ

Quadrant Selection

시간 제한: 1000ms메모리 제한: 512MB출처: CCC 2017 JuniorBOJ 14681
이 문제는 본문 이미지 일부가 표시되지 않습니다. 텍스트만으로 풀이가 어려울 수 있습니다.

문제

A common problem in mathematics is to determine which quadrant a given point lies in. There are four quadrants, numbered from 1 to 4, as shown in the diagram below:

[이미지 1]

For example, the point A, which is at coordinates (12, 5) lies in quadrant 1 since both its x and y values are positive, and point B lies in quadrant 2 since its x value is negative and its y value is positive.

Your job is to take a point and determine the quadrant it is in. You can assume that neither of the two coordinates will be 0.

입력

The first line of input contains the integer x (−1000 ≤ x ≤ 1000; x ≠ 0). The second line of input contains the integer y (−1000 ≤ y ≤ 1000; y ≠ 0).

출력

Output the quadrant number (1, 2, 3 or 4) for the point (x, y).

예제

예제 1

입력
12
5
출력
1

예제 2

입력
9
-13
출력
4
코드를 제출하려면 로그인하세요.