시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB69474768.116%

문제

The digits $0$, $1$, and $8$ look much the same if rotated $180$ degrees on the page (turned upside down). Also, the digit $6$ looks much like a $9$, and vice versa, when rotated $180$ degrees on the page. A multi-digit number may also look like itself when rotated on the page; for example $9966$ and $10\,801$ do, but $999$ and $1234$ do not.

You are to write a program to count how many numbers from a given interval look like themselves when rotated $180$ degrees on the page. For example, in the interval $[1 \dots 100]$ there are six: $1$, $8$, $11$, $69$, $88$, and $96$.

Your program should take as input two integers, $m$ and $n$, which define the interval to be checked, $1 \le m \le n \le 32\,000$. The output from your program is the number of rotatable numbers in the interval.

You may assume that all input is valid.

예제 입력 1

1
100

예제 출력 1

6