#abc254a. A - Last Two Digits
A - Last Two Digits
Score : points
问题描述
给定一个整数 ,且 至少为100。请打印出 的最后两位数字。
准确地说,按照顺序打印出 的十位和个位数字。
以上为通义千问 qwen-max 翻译,仅供参考。
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.
Sample Input 1
254
Sample Output 1
54
The last two digits of are , which should be printed.
Sample Input 2
101
Sample Output 2
01
The last two digits of are , which should be printed.
update @ 2024/3/10 10:49:05