Page Contents
Repeat ACL SOLUTION
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
≤
K
≤
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
Copy
3
Sample Output 1
Copy
ACLACLACL