#abc209a. [abc209_a]Counting

[abc209_a]Counting

Problem Statement

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

Constraints

  • 1leqAleq1001 \\leq A \\leq 100
  • 1leqBleq1001 \\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.


Sample Input 1

2 4

Sample Output 1

3

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


Sample Input 2

10 100

Sample Output 2

91

Sample Input 3

3 2

Sample Output 3

0

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