#abc199b. [abc199_b]Intersection

[abc199_b]Intersection

Problem Statement

You are given sequences of length NN each: A=(A1,A2,A3,dots,AN)A = (A_1, A_2, A_3, \\dots, A_N) and B=(B1,B2,B3,dots,BN)B = (B_1, B_2, B_3, \\dots, B_N).
Find the number of integers xx satisfying the following condition:

  • AilexleBiA_i \\le x \\le B_i holds for every integer ii such that 1leileN1 \\le i \\le N.

Constraints

  • 1leNle1001 \\le N \\le 100
  • 1leAileBile10001 \\le A_i \\le B_i \\le 1000
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN A1A_1 A2A_2 A3A_3 dots\\dots ANA_N B1B_1 B2B_2 B3B_3 dots\\dots BNB_N

Output

Print the answer.


Sample Input 1

2
3 2
7 5

Sample Output 1

3

xx must satisfy both 3lexle73 \\le x \\le 7 and 2lexle52 \\le x \\le 5.
There are three such integers: 33, 44, and 55.


Sample Input 2

3
1 5 3
10 7 3

Sample Output 2

0

There may be no integer xx satisfying the condition.


Sample Input 3

3
3 2 5
6 9 8

Sample Output 3

2