103330: [Atcoder]ABC333 A - Three Threes

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:10 Solved:0

Description

Score : $100$ points

Problem Statement

You are given an integer $N$ between $1$ and $9$, inclusive, as input.

Concatenate $N$ copies of the digit $N$ and print the resulting string.

Constraints

  • $N$ is an integer between $1$ and $9$, inclusive.

Input

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

$N$

Output

Print the answer.


Sample Input 1

3

Sample Output 1

333

Concatenate three copies of the digit $3$ to yield the string 333.


Sample Input 2

9

Sample Output 2

999999999

Output

得分:100分

问题描述

您将获得一个介于1和9之间的整数$N$作为输入。

将$N$个数字$N$连接起来并打印结果字符串。

限制条件

  • $N$是一个介于1和9之间的整数。

输入

输入标准输入以下格式:

$N$

输出

打印答案。


样例输入1

3

样例输出1

333

将三个数字$3$连接起来得到字符串333


样例输入2

9

样例输出2

999999999

HINT

输入n,输出n个n

加入题单

算法标签: