시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB63360.000%

문제

When Phil was a boy he had a centipede. Everybody knows that centipedes have lots of legs, Phil's one had a total of n legs, some of the legs were left, the other ones were right. Each day the centipede used some of its legs, it always used at least one left leg and at least one right leg.

Each day Phil wrote down two integers to his notebook: the number of left legs and the number of right legs used by the centipede that day.

Phil now wants to use his notes to find out how many left legs and how many right legs his centipede had. However, Phil was not perfectly accurate, so he could make mistakes in his notes. Phil says that his note li, ri is correct if the centipede had at least li left legs and at least ri right legs.

Help Phil to find out how many left legs and how many right legs could his centipede have, so that the maximum number of his notes were correct.

입력

Input contains several test cases. The first line of input contains t — the number of test cases (1 ≤ t ≤ 10 000).

Each test case starts with a line that contains an integer n (2 ≤ n ≤ 109) — the total number of centipede legs. The following line contains m (1 ≤ m ≤ 105) — the number of Phil's notes.

The following m lines contain two integers li, ri each (1 ≤ li, ri ≤ n) — the number of left legs and right legs used by the centipede on the i-th day, according to Phil's notes.

The total number of notes in all test cases in one input data doesn't exceed 105.

출력

For each test case print one line with two integers: the number of left legs and the number of right legs the centipede could have so that the maximum number of notes were correct.

 

예제 입력 1

3
4
3
1 2
1 3
1 4
2
2
2 2
1 2
5
4
1 4
2 3
3 2
4 1

예제 출력 1

1 3
1 1
1 4