Rabbit Hunt
A good hunter kills two rabbits with one shot. Of course, it can be easily done since for any two points we can always draw a line containing the both. But killing three or more rabbits in one shot is much more difficult task. To be the best hunter in the world one should be able to kill the maximal possible number of rabbits. Assume that rabbit is a point on the plane with integer x and y coordinates. Having a set of rabbits you are to find the largest number of rabbits that can be killed with single shot, i.e. maximum number of points lying exactly on the same line. No two rabbits sit at one point.
Input
The first line contains the number of rabbits n (3 ≤ n ≤ 200). Each of the next n lines contains x and y (-2000 ≤ x, y ≤ 2000) coordinates (in this order) separated by a space.
Output
Print the maximal number of rabbits that are in one line.