atcoder#AGC021A. [AGC021A] Digit Sum 2

[AGC021A] Digit Sum 2

Score : 300300 points

Problem Statement

Find the maximum possible sum of the digits (in base 1010) of a positive integer not greater than NN.

Constraints

  • 1N10161\leq N \leq 10^{16}
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the maximum possible sum of the digits (in base 1010) of a positive integer not greater than NN.

100
18

For example, the sum of the digits in 9999 is 1818, which turns out to be the maximum value.

9995
35

For example, the sum of the digits in 99899989 is 3535, which turns out to be the maximum value.

3141592653589793
137