#P86. Input Test: Common Logarithm

Input Test: Common Logarithm

Person in charge

Problem Description

Calculate lgn\lfloor\lg n\rfloor.

Input Format

A positive integer nn.

Output Format

A non-negative integer lgn\lfloor\lg n\rfloor.

Example

2940514964
9

Hint

0<n<101080<n<10^{10^8}.

lgn=log10n\lg n=\log _{10} n.

The input file does not have a newline character at the end.