Skip to content

Baekjoon 9656

1. Problem

문제 확인하기

2. Solution (Python, memory: 31388KB, time: 40ms)

import sys
input = sys.stdin.readline
N = int(input())
print('CY' if N%2 else 'SK')