Line 1: A single integer: 
N * Lines 2..N+1: Line i+1 describes fence post i's location with two space-separated integers: x_i and y_i
* Line 1: A single integer, the maximum possible number of fence posts that form a convex polygon.
			6
5 5
2 3
3 2
1 5
5 1
1 1
INPUT DETAILS:
A square with two points inside.
			5
The largest convex polygon is the pentagon (2,3), (3,2), (5,1), (5,5), (1,5).