Card Divisibility

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

Since you have learned Modular Arithmetic, you know how to work with quotients and remainders. For every pair of integers aa and mm with m>0m>0, there exist unique integers qq and rr such that a=mq+ra=m⋅q+r and 0r\<m0≤r\<m. But this is a bit simple, you wonder if you can do something more interesting with this theory.

Right now, you are holding a handful of consecutive cards numbered from LL to RR. You lay the cards out side-by-side to create a single large number (i.e. concatenating the digits of your cards). You would like to know the remainder (which is the rr in a=mq+ra=m⋅q+r) when this number is divided by 99. For example, L=9L=9 and R=11R=11 means you are holding cards 9,10,119,10,11. Concatenating these numbers produces the number 9101191011. The remainder rr left upon dividing this number by 99 would be r=3r=3.

입력

Input consists of a single line containing two integers LL (1L10121≤L≤10^{12}) and RR (LR1012L≤R≤10^{12}). This means you are holding the cards with numbers from LL to RR, inclusive.

출력

Display a single line containing the remainder of the concatenated number if you were to divide it by 99.