Score : $100$ points
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 is given from Standard Input in the following format:
$N$
Print the answer.
254
54
The last two digits of $254$ are $54$, which should be printed.
101
01
The last two digits of $101$ are $01$, which should be printed.