#dps. [dp_s]Digit Sum
[dp_s]Digit Sum
Problem Statement
Find the number of integers between and (inclusive) satisfying the following condition, modulo :
- The sum of the digits in base ten is a multiple of .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of integers satisfying the condition, modulo .
Sample Input 1
30
4
Sample Output 1
6
Those six integers are: and .
Sample Input 2
1000000009
1
Sample Output 2
2
Be sure to print the number modulo .
Sample Input 3
98765432109876543210
58
Sample Output 3
635270834