You are given an integer greater than or equal to 2. When this number is decomposed into the sum of two positive integers, a new integer number can be formed as the concatenation of the decimal representations of the two integers. Find the maximum possible number formed in this way.
For example, 102 can be decomposed and concatenated as follows.
Among them, is the largest.
输入格式
The input consists of a single test case in a single line. The line contains an integer between and , inclusive, which is the integer to be decomposed and concatenated.