Score : $200$ points
$N$ examinees took an entrance exam.
The examinee numbered $i$ scored $A_i$ points in math and $B_i$ points in English.
The admissions are determined as follows.
Here, in each of the steps 1. to 3., ties are broken by examinees' numbers: an examinee with the smaller examinee's number is prioritized. See also Sample Input and Output.
Print the examinees' numbers of the admitted examinees determined by the steps above in ascending order, separated by newlines.
Input is given from Standard Input in the following format:
$N$ $X$ $Y$ $Z$ $A_1$ $A_2$ $\dots$ $A_N$ $B_1$ $B_2$ $\dots$ $B_N$
Print the examinees' number of the admitted examinees in ascending order, separated by newlines.
6 1 0 2 80 60 80 60 70 70 40 20 50 90 90 80
1 4 5
Therefore, the examinees' numbers of the admitted examinees are $1$, $4$, and $5$. Print them in ascending order.
5 2 1 2 0 100 0 100 0 0 0 100 100 0
1 2 3 4 5
All examinees may be admitted.
15 4 3 2 30 65 20 95 100 45 70 85 20 35 95 50 40 15 85 0 25 45 35 65 70 80 90 40 55 20 20 45 75 100
2 4 5 6 7 8 11 14 15