#A2. Input Test: Common Logarithm

Input Test: Common Logarithm

Description

Calculate lgn\lfloor\lg n\rfloor.

Input

A positive integer nn.

Output

A non-negative integer representing the value of lgn\lfloor\lg n\rfloor.

Samples

2940514964
9

Tips

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

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

In this problem, there is NOT a linefeed at the end of the input file.