#abc200a. [abc200_a]Century

[abc200_a]Century

Problem Statement

In what century is the year NN?

What is century? A century is a period of 100 years. For example, the 11-st century consists of the years 11 through 100100, the 22-nd century consists of the years 101101 through 200200, and so on.

Constraints

  • 1leNle30001 \\le N \\le 3000

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer as an integer.


Sample Input 1

2021

Sample Output 1

21

This year 20212021 is in the 2121-st century.


Sample Input 2

200

Sample Output 2

2

The year 200200 is in the 22-nd century.