fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int N;
  5. scanf("%d", &N);
  6.  
  7. printf(N%2 ? "SK" : "CY");
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5280KB
stdin
5
stdout
SK