#Lutece3368. Du Cuo Ti Le

Du Cuo Ti Le

Description

You are given a sequence a1,...,a2n a_1,...,a_{2n} . Initially, all numbers are zero.

There are n n operations. The i i -th operation is represented by two integers li,ri(1li<ri2n,1in) l_i,r_i (1 \le l_i < r_i \le 2n, 1 \le i \le n) , which assigns i i to ali,...,ari1 a_{l_i},...,a_{r_i-1} . It is guaranteed that all the 2n 2n integers, l1,l2,...,ln,r1,r2,...,rn l_1,l_2,...,l_n,r_1,r_2,...,r_n , are distinct.

You need to perform each operation exactly once, in arbitrary order.

You want to minimize and maximize the value of index i (1i<2n)i\ (1 \le i < 2n) such that aiai+1 a_i\neq a_{i+1} after all n n operations. Output the minimum and maximum values of index ii.

Note that the minimal and maximal values can appear in different performance orders.

Input

The first line contains an integer n (1n5×103) n\ (1 \le n \le 5 \times 10^3) .

The i i -th line of the next n n lines contains a pair of integers li,ri (1li<ri2n) l_i,r_i\ (1 \le l_i < r_i \le 2n) . It is guaranteed that all the 2n 2n integers, l1,l2,...,ln,r1,r2,...,rn l_1, l_2, . . . , l_n, r_1, r_2, . . . , r_n , are distinct.

Output

Output two integers in one line denoting the minimal and the maximal value of index ii.

Samples

2
1 3
2 4
1 3

Resources

The 21st UESTC Programming Contest Preliminary