#abc254a. A - Last Two Digits

A - Last Two Digits

Score : 100100 points

问题描述

给定一个整数 NN,且 NN 至少为100。请打印出 NN 的最后两位数字。

准确地说,按照顺序打印出 NN 的十位和个位数字。

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

You are given an integer NN at least 100100. Print the last two digits of NN.

Strictly speaking, print the tens and ones digits of NN in this order.

Constraints

  • 100N999100 \le N \le 999
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.

Sample Input 1

254

Sample Output 1

54

The last two digits of 254254 are 5454, which should be printed.

Sample Input 2

101

Sample Output 2

01

The last two digits of 101101 are 0101, which should be printed.

update @ 2024/3/10 10:49:05