There are multiple test cases. The first line of input contains an integer $T$, indicating the number of test cases. For each test case:
The first line contains three integers $n(1 \le n \le 100)$, $R$ and $r(1 \le r \le R \le 10^4)$, indicating the number of buildings and the radius of two safe circles.
The following $n$ lines each contains 2 integers $x_i$ and $y_i(-10^4 \le x_i,y_i \le 10^4)$, indicating the coordinate of the buildings. Here we assume that the center of the original safe circle is located at $(0,0)$, and all the buildings are inside the original circle.
It's guaranteed that the sum of $n$ over all test cases will not exceed 5000.