100 #ABC209A. [ABC209A] Counting

[ABC209A] Counting

Score : 100100 points

Problem Statement

How many integers not less than AA and not more than BB are there?

Constraints

  • 1A1001 \leq A \leq 100
  • 1B1001 \leq B \leq 100
  • AA and BB are integers.

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print the number of integers not less than AA and not more than BB.

2 4
3

We have three integers not less than 22 and not more than 44: 22, 33, 44, so we should print 33.

10 100
91
3 2
0

We have no integers not less than 33 and not more than 22, so we should print 00.