#D6281. Built?

    ID: 5219 Type: Default 2000ms 268MiB

Built?

Built?

There are N towns on a plane. The i-th town is located at the coordinates (x_i,y_i). There may be more than one town at the same coordinates.

You can build a road between two towns at coordinates (a,b) and (c,d) for a cost of min(|a-c|,|b-d|) yen (the currency of Japan). It is not possible to build other types of roads.

Your objective is to build roads so that it will be possible to travel between every pair of towns by traversing roads. At least how much money is necessary to achieve this?

Constraints

  • 2 ≤ N ≤ 10^5
  • 0 ≤ x_i,y_i ≤ 10^9
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

N x_1 y_1 x_2 y_2 : x_N y_N

Output

Print the minimum necessary amount of money in order to build roads so that it will be possible to travel between every pair of towns by traversing roads.

Examples

Input

3 1 5 3 9 7 8

Output

3

Input

6 8 3 4 9 12 19 18 1 13 5 7 6

Output

8

inputFormat

input values are integers.

Input

Input is given from Standard Input in the following format:

N x_1 y_1 x_2 y_2 : x_N y_N

outputFormat

Output

Print the minimum necessary amount of money in order to build roads so that it will be possible to travel between every pair of towns by traversing roads.

Examples

Input

3 1 5 3 9 7 8

Output

3

Input

6 8 3 4 9 12 19 18 1 13 5 7 6

Output

8

样例

6
8 3
4 9
12 19
18 1
13 5
7 6
8