Party Location

Time limit1sMemory limit128 MB

Problem

After the programming contest, all of the contestants would like to throw a party. But afterwards it will be late, and the contestants will be too tired to walk far. Specifically, a contestant refuses to come if the party is more than 2.5 km from their house (exactly 2.5 km is acceptable).

So the party should be held as close as possible to as many houses as possible. Your job is to determine the optimal location for the party so that as many contestants as possible are willing to attend.

The city is a flat square, 50 km on each side. A contestant can walk in a straight line directly from the party to their house (there are no obstacles).

Input

Input consists of a number of lines, each containing two floating-point numbers giving the $(x, y)$ coordinates of one contestant's house. Each coordinate is between $0.0$ and $50.0$ (km) and is given with at most four digits after the decimal point. Every house is at a distinct location. There are at most 200 contestants. Read until end of input.

Output

Output a single integer: the maximum number of contestants that can attend the party.