#P3731. 「COCI 2015.1」ZGODAN

「COCI 2015.1」ZGODAN

Description

An integer is considered handsome if every two of its consecutive digits are of different parity. For a given integer NN, what is its closest handsome number?

Please note: Numbers consisting of only one digit are handsome numbers. The distance of two numbers is the absolute value of their difference.

Input

The first and only line of input contains the positive integer NN that consists of at most thousand digits and is not handsome.

Output

The first and only line of output must contain the required closest handsome number. If two closest numbers exist, output the smaller number first and then the larger one and separate them by a single space.

13
12 14
5801001
5810101

Scoring

In all test cases, 1n1010001 \leq n \leq 10^{1000}.