#abc333a. A - Three Threes
A - Three Threes
Score : points
问题描述
你将获得一个输入整数 ,其值介于 和 (包含两端)之间。
将 个数字 连接在一起,并输出得到的字符串。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given an integer between and , inclusive, as input.
Concatenate copies of the digit and print the resulting string.
Constraints
- is an integer between and , inclusive.
Input
The input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
3
Sample Output 1
333
Concatenate three copies of the digit to yield the string 333
.
Sample Input 2
9
Sample Output 2
999999999
update @ 2024/3/10 01:19:12