Problem2336-- Last Two Digits

2336: Last Two Digits

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Time Limit: 2 sec / Memory Limit: 1024 MB

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

  • 100 \le N \le 999100N999
  • NN is an integer.

Input

Input is given from Standard Input in the following format:
NN

Output

Print the answer.

Sample Input Copy

101

Sample Output Copy

01

HINT

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

Source/Category