100 atcoder#ABC136B. [ABC136B] Uneven Numbers

[ABC136B] Uneven Numbers

Score : 200200 points

Problem Statement

Given is an integer NN. Find the number of positive integers less than or equal to NN that have an odd number of digits (in base ten without leading zeros).

Constraints

  • 1N1051 \leq N \leq 10^5

Input

Input is given from Standard Input in the following format:

NN

Output

Print the number of positive integers less than or equal to NN that have an odd number of digits.

11
9

Among the positive integers less than or equal to 1111, nine integers have an odd number of digits: 1,2,,91, 2, \ldots, 9.

136
46

In addition to 1,2,,91, 2, \ldots, 9, another 3737 integers also have an odd number of digits: 100,101,,136100, 101, \ldots, 136.

100000
90909