Problem7980--ABC254 —— A - Last Two Digits

7980: ABC254 —— A - Last Two Digits

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

You are given an integer N at least 100. Print the last two digits of N.
Strictly speaking, print the tens and ones digits of N in this order.

Input

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

Output

Print the answer.

Constraints

100≤N≤999
N is an integer.

Sample 1 Input

254

Sample 1 Output

54

The last two digits of 254 are 54, which should be printed.

Sample 2 Input

101

Sample 2 Output

01

Source/Category

ABC254