100 #ABC187A. [ABC187A] Large Digits

[ABC187A] Large Digits

Score : 100100 points

Problem Statement

For an integer nn, let S(n)S(n) be the sum of digits in the decimal notation of nn. For example, we have S(123)=1+2+3=6S(123) = 1 + 2 + 3 = 6.

Given two 33-digit integers AA and BB, find the greater of S(A)S(A) and S(B)S(B).

Constraints

  • All values in input are integers.
  • 100A,B999100 \le A, B \le 999

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print the value of the greater of S(A)S(A) and S(B)S(B). If these are equal, print S(A)S(A).

123 234
9

We have S(123)=1+2+3=6S(123) = 1 + 2 + 3 = 6 and S(234)=2+3+4=9S(234) = 2 + 3 + 4 = 9, so we should print the greater of these: 99.

593 953
17
100 999
27