백준 풀이

백준 9656번 파이썬

ag2개발자 2022. 8. 27. 07:53
n=int(input())
if n%2==0:
    print("SK")
else:
    print("CY")