You are given points on the infinite plane. You need to find such points among these points, such that, they form a square with positive side length and whose sides are parallel to the x and y axis.
If there are multiple choices of such points, choose those which form the square of largest side. If there are still multiple choices of such points, choose those points in which the bottom left point has a lower y co-ordinate. If there are still multiple choices of such points, choose those points in which the bottom left point has a lower x co-ordinate.
Input:
First line contains a single integer , denoting the number of points on the plane. Each of the next lines contain space separated integers and , these denote the x and y co-ordinates of the point.
Output:
Print space separated integers, the co-ordinates of the bottom left point of the square found. If there are no squares present, print .
Constraints:
The bottom left coordinate of the found square are ().