practivceAlgorithm/백준

[백준][Python] 9655 돌게임

findTheValue 2021. 9. 10. 17:17

베스킨라빈스 31같은 게임. 대신 2를 고를 수 없다. SK는 늘 홀수번째 돌을 가져가게됨.

import sys
input = sys.stdin.readline

N = int(input())
print('CY' if not N%2 else 'SK')