Score : $100$ points
Given are integers $a$, $b$, $c$, and $d$.
We will choose integers $x$ and $y$ such that $a ≤ x ≤ b$ and $c ≤ y ≤ d$. Find the maximum possible value of $x - y$ here.
Input is given from Standard Input in the following format:
$a$ $b$ $c$ $d$
Print the answer.
0 10 0 10
10
$(x, y) = (10, 0)$ achieves the maximum value $x - y = 10$.
-100 -100 100 100
-200
-100 100 -100 100
200