We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e03ae09 + 91067b0 commit db48971Copy full SHA for db48971
1 file changed
ahma0/BOJ_9655.java
@@ -0,0 +1,16 @@
1
+import java.io.BufferedReader;
2
+import java.io.IOException;
3
+import java.io.InputStreamReader;
4
+
5
+public class Main {
6
7
+ public static void main(String[] args) throws IOException {
8
+ BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
9
+ int n = Integer.parseInt(br.readLine());
10
11
+ if (n % 2 == 0) System.out.println("CY");
12
+ else System.out.println("SK");
13
+ }
14
15
+}
16
0 commit comments