BOJ - 9660 - 돌 게임 6

Updated:

def solution():
    N = int(input())
    if N % 7 == 0 or N % 7 == 2: print('CY')
    else: print('SK')
solution()

https://www.acmicpc.net/problem/9660

Categories:

Updated:

Leave a comment