The impossible has happened. Bear G. has fallen into his own trap. Lured by a delicious box of Domaćica, without even thinking, he rushed and fell into his trap. In order to get out of the trap, he must solve the following task with your help. You are given three integers and .
- determine the minimal integer such that and the sum of its digits is
- determine the maximal integer such that and the sum of its digits is
Bear will be able to escape from the trap if he correctly determines numbers and . The numbers and will always exist.
Input
The first line of input contains the integer , the number from the task.
The second line of input contains the integer , the number from the task.
The third line of input contains the integer , the number from the task.
Output
The first line of output must contain the integer from the task.
The second line of output must contain the integer from the task.
Sample Input 1
1
100
4
Sample Output 1
4
40
Sample Input 2
100
500
12
Sample Output 2
129
480
Sample Input 3
1
10000
1
Sample Output 3
1
10000
Comments