Problem9147--ABC333 —— A - Three Threes

9147: ABC333 —— A - Three Threes

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

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.

Input

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

```
$N$
```

Output

Print the answer.

Constraints

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

Sample 1 Input

3

Sample 1 Output

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

Sample 2 Input

9

Sample 2 Output

999999999

HINT

相同题目:ABC333

Source/Category