In the Dark Forest, the territory you control is defined by the smallest convex polygon that contains all trees you control. Your power is defined by the area of the territory you control.
You currently control
Input
The first line of input consists of two space-separated integers
Next follow
It is guaranteed that no three trees have collinear locations.
Output
Print, on a single line, the maximum power you can achieve by gaining control over a single additional tree. The output should be rounded and displayed to exactly one decimal place.
Sample Input
5 3
-5 -5
-5 5
5 -5
-4 6
5 5
Sample Output
100.0
Comments