Let's consider some integer X. We will call the following sequence S a sequence generated by X:
For example S = (10, 3, 2) is a sequence generated by 10.
Can you find the total sum of lengths of the sequnces generated by all the integers from A to B inclusive.
Input
The only line contains two integers: A and B. (A <= B)
Output
Output the only integer - answer to the question. It's guaranteed that this value can be stored in 64-bit integer.
Constraints
1 < A <= B <= 1017
Subtasks