After setting a geometry problem, Max feels guilty and decides to ask you another.
Given points in the form that are not at the origin, find the angle on the unit circle and output the index of the one closest to angle .
Can you help Max's guilt by solving this problem?
Constraints
The data guarantee that the closest angle to is at least closer than any other angle.
Subtask 1 [10%]
Subtask 2 [90%]
Input Specification
The first line will contain two space-separated integers, and , the number of points and angle, respectively.
The next lines will contain two space-separated integers, and , the coordinates of the point.
Output Specification
Output the -indexed index of the angle closest to angle .
Sample Input 1
1 50
50 -30000
Sample Output 1
1
Sample Input 2
6 359
1 1
-1 -1
0 1
-1 0
5 1
5 -3
Sample Output 2
5
Comments