#abc333a. A - Three Threes

A - Three Threes

Score : 100100 points

问题描述

你将获得一个输入整数 NN,其值介于 1199(包含两端)之间。

NN 个数字 NN 连接在一起,并输出得到的字符串。

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

Problem Statement

You are given an integer NN between 11 and 99, inclusive, as input.

Concatenate NN copies of the digit NN and print the resulting string.

Constraints

  • NN is an integer between 11 and 99, inclusive.

Input

The input is given from Standard Input in the following format:

NN

Output

Print the answer.

Sample Input 1

3

Sample Output 1

333

Concatenate three copies of the digit 33 to yield the string 333.

Sample Input 2

9

Sample Output 2

999999999

update @ 2024/3/10 01:19:12