Froggy Ford
Fiona designs a new computer game Froggy Ford. In this game, a player helps a frog to cross a river using stone fords. Frog leaps from the river’s shore to the first stone ford, than to the second one and so on, until it reaches the other shore. Unfortunately, frog is pretty weak and its leap distance is quite limited. Thus, a player should choose the optimal route — the route that minimizes the largest leap required to traverse the route.
Fiona thinks that this game is not challenging enough, so she plans to add a possibility to place a new stone in the river. She asks you to write a program that determines such a location of the new stone that minimizes the largest leap required to traverse the optimal route.
Input
The first line contains two integers — the width of the river and — the number of stones in it.
Each of the following lines contains two integers — the coordinates of the stones. Coordinates of all stones are distinct.
River shores have coordinates and .
Output
Write two real numbers and — the coordinates of the stone to add. This stone shall minimize the largest leap required to traverse the optimal route. If a new stone cannot provide any improvement to the optimal route, then an arbitrary pair of and satisfying the constraints can be written, even coinciding with one of the existing stones.
Your answer shall be precise up to three digits after the decimal point.