There are N students and M checkpoints on the xy-plane.
The coordinates of the i-th student (1 ≤ i ≤ N) is (ai,bi), and the coordinates of the checkpoint numbered j (1 ≤ j ≤ M) is (cj,dj).
When the teacher gives a signal, each student has to go to the nearest checkpoint measured in Manhattan distance.
The Manhattan distance between two points (x1,y1) and (x2,y2) is |x1-x2|+|y1-y2|.
Here, |x| denotes the absolute value of x.
If there are multiple nearest checkpoints for a student, he/she will select the checkpoint with the smallest index.
Which checkpoint will each student go to?
The input is given from Standard Input in the following format:
N M a1 b1 : aN bN c1 d1 : cM dM
Print N lines.
The i-th line (1 ≤ i ≤ N) should contain the index of the checkpoint for the i-th student to go.
2 2 2 0 0 0 -1 0 1 0
2 1
The Manhattan distance between the first student and each checkpoint is:
The nearest checkpoint is checkpoint 2. Thus, the first line in the output should contain 2.
The Manhattan distance between the second student and each checkpoint is:
When there are multiple nearest checkpoints, the student will go to the checkpoint with the smallest index. Thus, the second line in the output should contain 1.
3 4 10 10 -10 -10 3 3 1 2 2 3 3 5 3 5
3 1 2
There can be multiple checkpoints at the same coordinates.
5 5 -100000000 -100000000 -100000000 100000000 100000000 -100000000 100000000 100000000 0 0 0 0 100000000 100000000 100000000 -100000000 -100000000 100000000 -100000000 -100000000
5 4 3 2 1