Algorithm
[백준/BOJ] 9655번 돌 게임 C++
SoyeonCha
2024. 11. 7. 17:25
맞힌 코드
#include <bits/stdc++.h>
using namespace std;
int n;
int main(void){
cin >> n;
if (n%2==0){
cout << "CY";
}
else
cout << "SK";
}