atcoder#ABC254A. [ABC254A] Last Two Digits
[ABC254A] Last Two Digits
Score : points
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.
254
54
The last two digits of are , which should be printed.
101
01
The last two digits of are , which should be printed.