#atcoderABC070B. Two Switches

Two Switches

Problem Statement

Alice and Bob are controlling a robot. They each have one switch that controls the robot.
Alice started holding down her button AA second after the start-up of the robot, and released her button BB second after the start-up.
Bob started holding down his button CC second after the start-up, and released his button DD second after the start-up.
For how many seconds both Alice and Bob were holding down their buttons?

Constraints

  • 0A<B1000≤A<B≤100
  • 0C<D1000≤C<D≤100
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

AA BB CC DD

Output

Print the length of the duration (in seconds) in which both Alice and Bob were holding down their buttons.

Input 1

0 75 25 100

Output 1

50

Alice started holding down her button 00 second after the start-up of the robot, and released her button 7575 second after the start-up.
Bob started holding down his button 2525 second after the start-up, and released his button 100100 second after the start-up.
Therefore, the time when both of them were holding down their buttons, is the 5050 seconds from 2525 seconds after the start-up to 7575 seconds after the start-up.

Input 2

0 33 66 99

Output 2

0

Alice and Bob were not holding their buttons at the same time, so the answer is zero seconds.

Input 3

10 90 20 80

Output 3

60