Problem: You are given a positive integer .
Let be sum of digits in base 10 representation of , for example, , .
Your task is to find two integers , such that , and is the largest possible among all such pairs.
Input Format: The only line of input contains an integer .
Output Format: Print largest among all pairs of integers , such that and .
Note: In the first example, you can choose, for example, and , so that . It can be shown that it is impossible to get a larger answer.
In the second test example, you can choose, for example, and , with . It can be shown that it is impossible to get a larger answer.