A - Repeat ACL Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 100 points

Problem Statement

You are given an integer K. Print the string obtained by repeating the string ACL K times and concatenating them.

For example, if K = 3, print ACLACLACL.

Constraints

  • 1 \leq K \leq 5
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

K

Output

Print the string obtained by repeating the string ACL K times and concatenating them.


Sample Input 1

3

Sample Output 1

ACLACLACL

配点 : 100

問題文

整数 K が与えられます。 文字列 ACLK 回繰り返してつなげることで得られる文字列を出力してください。

たとえば、K = 3 ならば、 ACLACLACL を出力してください。

制約

  • 1 \leq K \leq 5
  • 入力は全て整数である。

入力

入力は以下の形式で標準入力から与えられる。

K

出力

文字列 ACLK 回繰り返してつなげることで得られる文字列を出力せよ。


入力例 1

3

出力例 1

ACLACLACL