Problem A
Cudak
Božo is a strange little boy. Every day he tires his friends
with strange questions. Today’s question is: how many integers
in the interval
Write a program that answers Božo’s question so that he can get some sleep.
Input
The input contains three integers
Output
The first line should contain the number of integers in the
interval with the digit sum equal to
The second line should contain the smallest such integer.
The input data will guarantee that the first number is at
least
Sample Input 1 | Sample Output 1 |
---|---|
1 9 5 |
1 5 |
Sample Input 2 | Sample Output 2 |
---|---|
1 100 10 |
9 19 |
Sample Input 3 | Sample Output 3 |
---|---|
11111 99999 24 |
5445 11499 |