Problem6702--ABC200 —— A - Century

6702: ABC200 —— A - Century

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

In what century is the year $N$?
What is century? A century is a period of 100 years. For example, the $1$-st century consists of the years $1$ through $100$, the $2$-nd century consists of the years $101$ through $200$, and so on.

Input

Input is given from Standard Input in the following format:
$N$

Output

Print the answer as an integer.

Constraints

$1≤N≤3000$

Sample 1 Input

2021

Sample 1 Output

21
This year $2021$ is in the $21$-st century.

Sample 2 Input

200

Sample 2 Output

2
The year $200$ is in the $2$-nd century.

HINT

相同题目:ABC200

Source/Category

 AtCoder_ABC 100.200.ABC200