본문 바로가기
Algorithm(BOJ, Python)/Mathematics

[백준_9655] 돌게임 python

by kurooru 2022. 7. 16.

베스킨라빈스31,,

술게임 열심히 했더니 이런 도움이 ㅋㅋ

# n 입력
n = int(input())

# 출력
if n % 2 == 0:
    print('CY')
else:
    print('SK')