You are given n points on the plane. You have to choose such a straight line, that there will be points on both sides of the line and the minimum distance from one of the points to the line should be the maximum possible. Find this distance.
The first line contains a single integer n --- the number of the points (2≤n≤2,000).
Each of the following n lines contains two integers x_i and y_i --- coordinates of i-th point (∣x_i∣,∣y_i∣≤109).
It's guaranteed that no two points coincide.
Print single real number --- an answer. Your answer will be considered correct if its absolute or relative error doesn't exceed 10−9.
A picture for the third example:
