#abc254a. [abc254_a]Last Two Digits

[abc254_a]Last Two Digits

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

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

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.


Sample Input 1

254

Sample Output 1

54

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


Sample Input 2

101

Sample Output 2

01

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