atcoder#ABC261A. [ABC261A] Intersection
[ABC261A] Intersection
Score : points
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
- $0\leq L_1
- $0\leq L_2
- 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.
0 3 1 5
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 .
0 1 4 5
0
No part is painted both red and blue.
0 3 3 7
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 .