Logo C++ Online Judge

C++

时间限制:1 s 空间限制:128 MB
TA: 惠宇龙
统计
Description

We call an integer incremental number if it reads strictly incremental from left to right.

For example:

$8, 37, 1356$ are all incremental numbers

$11, 32, 1517$ are not incremental numbers.

Please compute: given $a$ and $b$, how many increasing numbers are in $a,a+1, a+2, ..., b$.

Input Format:

A line of two integers $a$, $b$

Output format:

One integer representing the number of incremental numbers in the interval $[a,b]$.

Constraint:

$1 \le a \le b \le 100000$

Input Example:
1 11

Output Example:
9