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

[백준/파이썬] 24937번 SciComLove (2022)

by 현장 2023. 6. 3.

-Code

s = "SciComLove"

for _ in range(int(input()) % 10):
    s = s[1:] + s[0]
print(s)