#abc127c. [abc127_c]Prison

[abc127_c]Prison

Problem Statement

We have NN ID cards, and there are MM gates.

We can pass the ii-th gate if we have one of the following ID cards: the LiL_i-th, (Li+1)(L_i+1)-th, ..., and RiR_i-th ID cards.

How many of the ID cards allow us to pass all the gates alone?

Constraints

  • All values in input are integers.
  • 1leqNleq1051 \\leq N \\leq 10^5
  • 1leqMleq1051 \\leq M \\leq 10^5
  • 1leqLileqRileqN1 \\leq L_i \\leq R_i \\leq N

Input

Input is given from Standard Input in the following format:

NN MM L1L_1 R1R_1 L2L_2 R2R_2 vdots\\vdots LML_M RMR_M

Output

Print the number of ID cards that allow us to pass all the gates alone.


Sample Input 1

4 2
1 3
2 4

Sample Output 1

2

Two ID cards allow us to pass all the gates alone, as follows:

  • The first ID card does not allow us to pass the second gate.
  • The second ID card allows us to pass all the gates.
  • The third ID card allows us to pass all the gates.
  • The fourth ID card does not allow us to pass the first gate.

Sample Input 2

10 3
3 6
5 7
6 9

Sample Output 2

1

Sample Input 3

100000 1
1 100000

Sample Output 3

100000