#abla. [abl_a]Repeat ACL

[abl_a]Repeat ACL

Problem Statement

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

For example, if K=3K = 3, print ACLACLACL.

Constraints

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

Input

Input is given from Standard Input in the following format:

KK

Output

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


Sample Input 1

3

Sample Output 1

ACLACLACL