#AT2189. A - Last Two Digits
A - Last Two Digits
当前没有测试数据。
A - Last Two Digits
Score : $100$ points
Problem Statement
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.
Constraints
- $100 \le N \le 999$
- $N$ 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 $254$ are $54$, which should be printed.
101
01
The last two digits of $101$ are $01$, which should be printed.