Special Numbers
문제
Number theorist Dr. J is attracted by the beauty of numbers. When we are given a natural number of digits and a natural number , is called -special if the product of all the digits of , i.e. is divisible by . Note that the number is always divisible by a natural number.
For example, if and , then the product of all the digits of , is divisible by , so the number is -special. If and , then the product of all the digits of , is not divisible by , so the number is not -special.
Given three natural numbers , , and , write a program to output where is the number of - special numbers among numbers in the range .
입력
Your program is to read from standard input. The input has one line containing three integers, , , and (1 ≤ k ≤ 10^{17}, 1 ≤ L ≤ R ≤ 10^{20}).
출력
Your program is to write to standard output. Print exactly one line. The line should contain where is the number of -special numbers among the numbers in the range , where both and are inclusive in the range.
예제
예제 1
5 1 20
4
예제 2
5 50 100
19
예제 3
15 11 19
0