#abc254a. [abc254_a]Last Two Digits
[abc254_a]Last Two Digits
Problem Statement
You are given an integer at least . Print the last two digits of .
Strictly speaking, print the tens and ones digits of in this order.
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
254
Sample Output 1
54
The last two digits of are , which should be printed.
Sample Input 2
101
Sample Output 2
01
The last two digits of are , which should be printed.