#ABC254A. [ABC254A] Last Two Digits

[ABC254A] Last Two Digits

Score : 100100 points

Problem Statement

You are given an integer NN at least 100100. Print the last two digits of NN.

Strictly speaking, print the tens and ones digits of NN in this order.

Constraints

  • 100N999100 \le N \le 999
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.

254
54

The last two digits of 254254 are 5454, which should be printed.

101
01

The last two digits of 101101 are 0101, which should be printed.