본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 32652번 아카라카 2

by 현장 2024. 11. 15.

-Code

n = int(input())
res = "AKARAKA" + "RAKA" * (n - 1)
print(res)