Given a set of points, calculate the sum of all Manhattan distances between two point pairs.
The first line has an integer $n$ : the number of points.
The following $n$ lines describe the points. Each line has two integers $x$ and $y$ . You can assume that each point is distinct.
Print the sum of all Manhattan distances.