#D3785. Digits Sum

    ID: 3142 Type: Default 2000ms 1073MiB

Digits Sum

Digits Sum

Takahashi has two positive integers A and B.

It is known that A plus B equals N. Find the minimum possible value of "the sum of the digits of A" plus "the sum of the digits of B" (in base 10).

Constraints

  • 2 ≤ N ≤ 10^5
  • N is an integer.

Input

Input is given from Standard Input in the following format:

N

Output

Print the minimum possible value of "the sum of the digits of A" plus "the sum of the digits of B".

Examples

Input

15

Output

6

Input

100000

Output

10

inputFormat

Input

Input is given from Standard Input in the following format:

N

outputFormat

Output

Print the minimum possible value of "the sum of the digits of A" plus "the sum of the digits of B".

Examples

Input

15

Output

6

Input

100000

Output

10

样例

15
6