#D841. Revenge of Champernowne Constant

    ID: 694 Type: Default 8000ms 134MiB

Revenge of Champernowne Constant

Revenge of Champernowne Constant

Champernowne constant is an irrational number. Its decimal representation starts with "0.", followed by concatenation of all positive integers in the increasing order.

You will be given a sequence S which consists of decimal digits. Your task is to write a program which computes the position of the first occurrence of S in Champernowne constant after the decimal point.

Input

The input has multiple test cases. Each line of the input has one digit sequence. The input is terminated by a line consisting only of #.

It is guaranteed that each sequence has at least one digit and its length is less than or equal to 100.

Output

For each sequence, output one decimal integer described above. You can assume each output value is less than 1016.

Examples

Input

45678 67891011 21 314159265358979

Output

4 6 15 2012778692735799

Input

45678 67891011 21 314159265358979

Output

4 6 15 2012778692735799

inputFormat

Input

The input has multiple test cases. Each line of the input has one digit sequence. The input is terminated by a line consisting only of #.

It is guaranteed that each sequence has at least one digit and its length is less than or equal to 100.

outputFormat

Output

For each sequence, output one decimal integer described above. You can assume each output value is less than 1016.

Examples

Input

45678 67891011 21 314159265358979

Output

4 6 15 2012778692735799

Input

45678 67891011 21 314159265358979

Output

4 6 15 2012778692735799

样例

45678
67891011
21
314159265358979
4

6 15 2012778692735799

</p>