시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB139352225.581%

문제

Hsara and Simone like to communicate without anyone else knowing what they’re saying. This time, Simone invented a very sneaky cipher. When she wants to tell Hsara a non-negative number n, she performs the following encryption procedure.

Let d(n) denote the decimal expansion of n. Consider the string x := d(n)n , i.e., the decimal expansion of n concatenated with itself n times. The encryption of n is then the length of x.

As an example, assume Simone wants to encrypt the number 10. Then

x = 10101010101010101010.

The length of x is then 20, which will be the encrypted value of x.

Hsara had no problem writing a decryption algorithm for this procedure. But can you?

입력

The first and only line contains an integer L (0 ≤ L ≤ 10106), the encrypted value of some non-negative integer n.

출력

Output a single line containing the integer n.

예제 입력 1

20

예제 출력 1

10

출처

Contest > KTH Challenge > KTH Challenge 2016 H번

  • 문제를 만든 사람: Johan Sannemo