100 atcoder#ABC127C. [ABC127C] Prison
[ABC127C] Prison
Score : points
Problem Statement
We have ID cards, and there are gates.
We can pass the -th gate if we have one of the following ID cards: the -th, -th, ..., and -th ID cards.
How many of the ID cards allow us to pass all the gates alone?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of ID cards that allow us to pass all the gates alone.
4 2
1 3
2 4
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.
10 3
3 6
5 7
6 9
1
100000 1
1 100000
100000