Processing math: 90%

Union of Rectangles

Given a set of N axis-aligned rectangles in the plane, find the area of regions which are covered by at least one rectangle.

Input

The input is given in the following format.

N
x11 y11 x21 y21
x12 y12 x22 y22
:
x1N y1N x2N y2N

(x1i,y1i) and (x2i,y2i) are the coordinates of the top-left corner and the bottom-right corner of the i-th rectangle respectively.

Constraints

Output

Print the area of the regions.

Sample Input 1

2
0 0 3 4
1 2 4 3

Sample Output 1

13

Sample Input 2

3
1 1 2 5
2 1 5 2
1 2 2 5

Sample Output 2

7

Sample Input 3

4
0 0 3 1
0 0 1 3
0 2 3 3
2 0 3 3

Sample Output 3

8