100 atcoder#ABC070B. [ABC070B] Two Switches
[ABC070B] Two Switches
Score : points
Problem Statement
Alice and Bob are controlling a robot. They each have one switch that controls the robot. Alice started holding down her button second after the start-up of the robot, and released her button second after the start-up. Bob started holding down his button second after the start-up, and released his button second after the start-up. For how many seconds both Alice and Bob were holding down their buttons?
Constraints
- $0 \leq A
- $0 \leq C
- All input values are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the length of the duration (in seconds) in which both Alice and Bob were holding down their buttons.
0 75 25 100
50
Alice started holding down her button second after the start-up of the robot, and released her button second after the start-up. Bob started holding down his button second after the start-up, and released his button second after the start-up. Therefore, the time when both of them were holding down their buttons, is the seconds from seconds after the start-up to seconds after the start-up.
0 33 66 99
0
Alice and Bob were not holding their buttons at the same time, so the answer is zero seconds.
10 90 20 80
60