Problem1536--CF835 - B. The number on the board

1536: CF835 - B. The number on the board

[Creator : ]
Time Limit : 2.000 sec  Memory Limit : 256 MiB

Description

Some natural number was written on the board. Its sum of digits was not less than $k$. But you were distracted a bit, and someone changed this number to $n$, replacing some digits with others. It's known that the length of the number didn't change.
You have to find the minimum number of digits in which these two numbers can differ.

Input

The first line contains integer $k\ (1 ≤k≤ 10^9)$.
The second line contains integer $n\ (1 ≤n< 10^{100000})$.
There are no leading zeros in $n$. It's guaranteed that this situation is possible.

Output

Print the minimum number of digits in which the initial number and $n$ can differ.

Sample 1 Input

3
11

Sample 1 Output

1
the initial number could be 12.

Sample 2 Input

3
99

Sample 2 Output

0
the sum of the digits of n is not less than k. The initial number could be equal to n.

HINT

CF835B.

Source/Category