Problem K: Trading Ship

You are on board a trading ship as a crew.

The ship is now going to pass through a strait notorious for many pirates often robbing ships. The Maritime Police has attempted to expel those pirates many times, but failed their attempts as the pirates are fairly strong. For this reason, every ship passing through the strait needs to defend themselves from the pirates.

The navigator has obtained a sea map on which the location of every hideout of pirates is shown. The strait is considered to be a rectangle of W × H on an xy-plane, where the two opposite corners have the coordinates of (0, 0) and (W, H). The ship is going to enter and exit the strait at arbitrary points on y = 0 and y = H respectively.

To minimize the risk of attack, the navigator has decided to take a route as distant from the hideouts as possible. As a talented programmer, you are asked by the navigator to write a program that finds the best route, that is, the route with the maximum possible distance to the closest hideouts. For simplicity, your program just needs to report the distance in this problem.

Input

The input begins with a line containing three integers W, H, and N. Here, N indicates the number of hideouts on the strait. Then N lines follow, each of which contains two integers xi and yi, which denote the coordinates the i-th hideout is located on.

The input satisfies the following conditions: 1 ≤ W, H ≤ 109, 1 ≤ N ≤ 500, 0 ≤ xiW, 0 ≤ yiH.

Output

There should be a line containing the distance from the best route to the closest hideout(s). The distance should be in a decimal fraction and should not contain an absolute error greater than 10-3.

Sample Input and Output

Input #1

10 10 1
3 5

Output #1

7.000

Input #2

10 10 2
2 2
8 8

Output #2

4.243

Input #3

10 10 3
0 1
4 4
8 1

Output #3

2.500