Problem E - Escape from Enemy Territory

Time limit: 4 seconds

A small group of commandos has infiltrated deep into enemy territory. They have just accomplished their mission and now have to return to their rendezvouz point. Of course they don't want to get caught even if the mission is already over. Therefore they decide to take the route that will keep them as far away from any enemy base as possible.

Being well prepared for the mission, they have a detailed map of the area which marks all (known) enemy bases, their current position and the rendezvouz point. For simplicity, we view the the map as a rectangular grid with integer coordinates (x, y) where 0 ≤ x < X, 0 ≤ y < Y. Furthermore, we approximate movements as horizontal and vertical steps on this grid, so we use Manhattan distance: dist((x1, y1),(x2, y2)) = |x2-x1|+|y2-y1| and also the commandos can only travel in vertical and horizontal directions at each step.

Can you help them find the best route? Of course, in case that there are multiple routes that keep the same minimum distance to enemy bases, the commandos want to take a shortest route that does so. Furthermore, they don't want to take a route off their map as it could take them in unknown, dangerous areas, but you don't have to worry about unknown enemy bases off the map.

Input

On the first line one positive number: the number of testcases, at most 100. After that per testcase:

All pairs of coordinates are on the map and different from each other.

Output

Per testcase:

Sample Input

2
1 2 2
0 0 1 1
0 1
2 5 6
0 0 4 0
2 1
2 3

Sample Output

1 2
2 14
The 2007 ACM Northwestern European Programming Contest