Score : $100$ points
How many integers not less than $A$ and not more than $B$ are there?
Input is given from Standard Input in the following format:
$A$ $B$
Print the number of integers not less than $A$ and not more than $B$.
2 4
3
We have three integers not less than $2$ and not more than $4$: $2$, $3$, $4$, so we should print $3$.
10 100
91
3 2
0
We have no integers not less than $3$ and not more than $2$, so we should print $0$.