#D8585. Social Circles
Social Circles
Social Circles
You invited n guests to dinner! You plan to arrange one or more circles of chairs. Each chair is going to be either occupied by one guest, or be empty. You can make any number of circles.
Your guests happen to be a little bit shy, so the i-th guest wants to have a least l_i free chairs to the left of his chair, and at least r_i free chairs to the right. The "left" and "right" directions are chosen assuming all guests are going to be seated towards the center of the circle. Note that when a guest is the only one in his circle, the l_i chairs to his left and r_i chairs to his right may overlap.
What is smallest total number of chairs you have to use?
Input
First line contains one integer n — number of guests, (1 ⩽ n ⩽ 10^5).
Next n lines contain n pairs of space-separated integers l_i and r_i (0 ⩽ l_i, r_i ⩽ 10^9).
Output
Output a single integer — the smallest number of chairs you have to use.
Examples
Input
3 1 1 1 1 1 1
Output
6
Input
4 1 2 2 1 3 5 5 3
Output
15
Input
1 5 6
Output
7
Note
In the second sample the only optimal answer is to use two circles: a circle with 5 chairs accomodating guests 1 and 2, and another one with 10 chairs accomodationg guests 3 and 4.
In the third sample, you have only one circle with one person. The guest should have at least five free chairs to his left, and at least six free chairs to his right to the next person, which is in this case the guest herself. So, overall number of chairs should be at least 6+1=7.
inputFormat
Input
First line contains one integer n — number of guests, (1 ⩽ n ⩽ 10^5).
Next n lines contain n pairs of space-separated integers l_i and r_i (0 ⩽ l_i, r_i ⩽ 10^9).
outputFormat
Output
Output a single integer — the smallest number of chairs you have to use.
Examples
Input
3 1 1 1 1 1 1
Output
6
Input
4 1 2 2 1 3 5 5 3
Output
15
Input
1 5 6
Output
7
Note
In the second sample the only optimal answer is to use two circles: a circle with 5 chairs accomodating guests 1 and 2, and another one with 10 chairs accomodationg guests 3 and 4.
In the third sample, you have only one circle with one person. The guest should have at least five free chairs to his left, and at least six free chairs to his right to the next person, which is in this case the guest herself. So, overall number of chairs should be at least 6+1=7.
样例
1
5 6
7
</p>