Guest User

Untitled

a guest
Jan 17th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. bool d[1001];
  4. int main(){
  5. long long n;
  6. scanf("%lld", &n);
  7. d[1] = true;
  8. d[3] = true;
  9. //하나라도 뒤에 애가 이기는 경우의 수 있으면 이기게 됨
  10. if (n%2==1) printf("SK\n");
  11. else printf("CY");
  12. return 0;
  13. }
Add Comment
Please, Sign In to add comment