Zvonko is playing with digits again, even though his mother has warned him that he is doing too much math and should go outside to play with his friends.
In his latest game, Zvonko looks for multiples of an integer
In order to ruin Zvonko's fun, his mother decided to get a program that solves the problem. Write a
program that calculates how many multiples of
Input Specification
The first line of input contains three integers
Output Specification
Output the number of multiples Zvonko can make on a single line.
Sample Input 1
2 1 20
0123456789
Sample Output 1
10
Sample Input 2
6 100 9294
23689
Sample Output 2
111
Sample Input 3
5 4395 9999999999
12346789
Sample Output 3
0
Comments