Problem2288-- Counting

2288: Counting

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 100100 points

Problem Statement

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

Constraints

  • 1 \leq A \leq 1001A100
  • 1 \leq B \leq 1001B100
  • AA and BB are integers.

Input

Input is given from Standard Input in the following format:
AABB

Output

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

Sample Input Copy

2 4

Sample Output Copy

3

HINT

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

Source/Category