#abc261a. [abc261_a]Intersection
[abc261_a]Intersection
Problem Statement
We have a number line. Takahashi painted some parts of this line, as follows:
- First, he painted the part from to red.
- Next, he painted the part from to blue.
Find the length of the part of the line painted both red and blue.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the length of the part of the line painted both red and blue, as an integer.
Sample Input 1
0 3 1 5
Sample Output 1
2
The part from to is painted red, and the part from to is painted blue.
Thus, the part from to is painted both red and blue, and its length is .
Sample Input 2
0 1 4 5
Sample Output 2
0
No part is painted both red and blue.
Sample Input 3
0 3 3 7
Sample Output 3
0
If the part painted red and the part painted blue are adjacent to each other, the length of the part painted both red and blue is .