Problem1730-- 小凯的数字

1730: 小凯的数字

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

Description

小凯有一天突发奇想,写下了一串数字:l(l+1)(l+2)...(r-1)rl(l+1)(l+2)...(r1)r

例如:l=2,r=5l=2,r=5时,数字为:23452345

l=8,r=12l=8,r=12时数字为:8910111289101112

小凯很喜欢数字 99,所以他想问你他写下的数字除以 99 的余数是多少

例如:l=2,r=5l=2,r=5时,2345  \,\,mod\,\, 9 = 5234mod  9=5

Input

两个数字 l,rl,r 表示数字范围,不超过109

Output

输出一行,一个数字,表示小凯问题的回答

Sample Input Copy

8 12

Sample Output Copy

5

Source/Category