문제
Farmer John's
FJ is unfortunately on a tight budget due to low milk production last quarter. He would therefore like to enclose a smaller area to reduce maintenance costs, and the only way he can see to do this is by building two enclosures instead of one. Please help him compute how much less area he needs to enclose, in total, by using two enclosures instead of one. Like the original enclosure, the two enclosures must collectively contain all the cows (with cows on boundaries allowed), and they must have sides parallel to the x and y axes. The two enclosures are not allowed to overlap -- not even on their boundaries. Note that enclosures of zero area are legal, for example if an enclosure has zero width and/or zero height.
Problem credits: Brian Dean
입력
The first line of input contains
출력
Write a single integer specifying amount of total area FJ can save by using two enclosures instead of one.
예제
6
4 2
8 10
1 1
9 12
14 7
2 3
107