102540: [AtCoder]ABC254 A - Last Two Digits
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
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:
$N$
Output
Print the answer.
Sample Input 1
254
Sample Output 1
54
The last two digits of $254$ are $54$, which should be printed.
Sample Input 2
101
Sample Output 2
01
The last two digits of $101$ are $01$, which should be printed.
Input
题意翻译
有一个 $100$ 以上的整数 $N$,输出 $N$ 的后 $2$ 位数,即 $N$ 的十位与个位。Output
分数:100分
问题描述
你将得到一个至少为100的整数$N$。打印出$N$的最后两位数。
严格来说,按照十位和个位的顺序打印出$N$的十位数和个位数。
限制条件
- $100 \le N \le 999$
- $N$是一个整数。
输入
输入从标准输入按以下格式给出:
$N$
输出
打印答案。
样例输入1
254
样例输出1
54
$254$的最后两位数是$54$,应该被打印出来。
样例输入2
101
样例输出2
01
$101$的最后两位数是$01$,应该被打印出来。