시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB325986425.000%

문제

Having decided to invest in renewable energy, Byteasar started a solar panels factory. It appears that he has hit the gold as within a few days n clients walked through his door. Each client has ordered a single rectangular panel with specified width and height ranges.

The panels consist of square photovoltaic cells. The cells are available in all integer sizes, i.e., with the side length integer, but all cells in one panel have to be of the same size. The production process exhibits economies of scale in that the larger the cells that form it, the more efficient the panel. Thus, for each of the ordered panels, Byteasar would like to know the maximum side length of the cells it can be made of.

입력

The first line of the standard input contains a single integer n(1 ≤ n ≤ 1,000): the number of panels that were ordered. The following n lines describe each of those panels: the i-th line contains four integers  smin,smax,wmin,wmax(1 ≤ smin ≤ smax ≤ 109, 1 ≤ wmin ≤ wmax ≤ 109), separated by single spaces; these specify the minimum width, the maximum width, the minimum height, and the maximum height of the i-th panel respectively.

In tests worth 75% of the total score, smax,wmax ≤ 107 holds for each panel. In their subset worth 20% of the total score, n ≤ 10 holds in addition.

출력

Your program should print exactly n lines to the standard output. The i-th line is to give the maximum side length of the cells that the i-th panel can be made of.

 

예제 입력 1

4
3 9 8 8
1 10 11 15
4 7 22 23
2 5 19 24

예제 출력 1

8
7
2
5

힌트

Byteasar will produce four solar panels of the following sizes: 8x8(a single cell), 7x14(two cells), 4x22 or 6x22 (22 or 33 cells respectively), and 5x20 (four cells).