#abc200a. A - Century

A - Century

Score : 100100 points

问题陈述

年份 NN 属于哪个世纪?

什么是世纪?一个世纪是指连续的100年。例如,第1世纪包含了从1年至100年,第2世纪包含了从101年至200年,以此类推。

以上为通义千问 qwen-max 翻译,仅供参考。

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

  • 1N30001 \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.

update @ 2024/3/10 09:11:13