B - Credits Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 8

問題文

整数 N が与えられます。 \displaystyle\frac{N}{100} の小数点以下を切り捨てて得られる値を整数として出力してください。

制約

  • 1 \leq N \leq 10^{500000}
  • N は整数

入力

入力は以下の形式で標準入力から与えられる。

N

出力

答えとなる整数を出力せよ。


入力例 1

9876

出力例 1

98

\displaystyle\frac{9876}{100} = 98.76 です。その小数点以下を切り捨てると 98 となります。 よって、98 と出力します。


入力例 2

99

出力例 2

0

\displaystyle\frac{99}{100} = 0.99 です。その小数点以下を切り捨てると 0 となります。 よって、0 と出力します。


入力例 3

31415926535897932384626433832795028841971693993

出力例 3

314159265358979323846264338327950288419716939

入力や出力の値が非常に大きい場合があることに注意してください。

Score : 8 points

Problem Statement

You are given an integer N. Truncate \displaystyle\frac{N}{100} by discarding the fractional part and print the resulting integer.

Constraints

  • 1 \leq N \leq 10^{500000}
  • N is an integer.

Input

Input is given from Standard Input in the following format:

N

Output

Print the answer as an integer.


Sample Input 1

9876

Sample Output 1

98

We have \displaystyle\frac{9876}{100} = 98.76, and discarding the fractional part results in 98. Thus, 98 should be printed.


Sample Input 2

99

Sample Output 2

0

We have \displaystyle\frac{99}{100} = 0.99, and discarding the fractional part results in 0. Thus, 0 should be printed.


Sample Input 3

31415926535897932384626433832795028841971693993

Sample Output 3

314159265358979323846264338327950288419716939

Note that the values in input and output may be enormous.