5555: Last Two Digits最后两位数字(ABC254A)
内存限制:128 MB
时间限制:1.000 S
评测方式:文本比较
命题人:
提交:0
解决:0
题目描述
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.
Strictly speaking, print the tens and ones digits of $N$ in this order.
Constraints:
- $100 \le N \le 999$
- $N$ is an integer.
给定一个至少为100的整数N。打印N的最后两位数字。具体来说,按顺序打印N的十位数和个位数。
数据范围:
- $100 \le N \le 999$
- $N$ 是一个整数.
输入
N
输出
Print the answer.
样例输入 复制
254
样例输出 复制
54