PivotOJ

Digit Sum

시간 제한: 1000ms메모리 제한: 128MB출처: BAPC 2012BOJ 5425

문제

For a pair of integers a and b, the digit sum of the interval [a, b] is defined as the sum of all digits occurring in all numbers between (and including) a and b. For example, the digit sum of [28, 31] can be calculated as:

2+8 + 2+9 + 3+0 + 3+1 = 28

Given the numbers a and b, calculate the digit sum of [a, b].

입력

On the first line one positive number: the number of test cases, at most 100. After that per test case:

  • one line with two space-separated integers, a and b (0 ≤ a ≤ b ≤1015)

출력

Per test case:

  • one line with an integer: the digit sum of [a, b].

예제

예제 1

입력
3
0 10
28 31
1234 56789
출력
46
28
1128600
코드를 제출하려면 로그인하세요.