node_ids
listlengths
4
1.4k
edge_index
listlengths
1
2.22k
text
listlengths
4
1.4k
source
stringlengths
14
427k
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 4, 18, 18, 13, 13, 4, 18, 13, 2, 4, 18, 13, 17, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 23, 13, 12, 13, 30, 14, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 37, 20, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 14, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 37, 20, 30, 29, 4, 18, 13, 29, 4, 18, 13, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 137, 17 ], [ 137, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 24, 29 ], [ 29, 30 ], [ 30, 31 ], [ 29, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 32, 36 ], [ 18, 37 ], [ 37, 38 ], [ 137, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 39, 43 ], [ 43, 44 ], [ 39, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 45, 51 ], [ 51, 52 ], [ 39, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 57, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 56, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 70, 71 ], [ 66, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 55, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 39, 80 ], [ 80, 81 ], [ 80, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 84, 87 ], [ 87, 88 ], [ 39, 89 ], [ 89, 90 ], [ 89, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 93, 96 ], [ 96, 97 ], [ 39, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 102, 105 ], [ 105, 106 ], [ 39, 107 ], [ 107, 108 ], [ 107, 109 ], [ 109, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 111, 115 ], [ 115, 116 ], [ 116, 117 ], [ 117, 118 ], [ 110, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 123, 124 ], [ 124, 125 ], [ 120, 126 ], [ 126, 127 ], [ 127, 128 ], [ 128, 129 ], [ 129, 130 ], [ 109, 131 ], [ 131, 132 ], [ 132, 133 ], [ 133, 134 ], [ 132, 135 ], [ 0, 136 ], [ 136, 137 ], [ 136, 138 ] ]
[ "\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.InputStreamReader;\nimport java.util.StringTokenizer;\n\npublic class Main {\n public static void main(final String[] args) {\n final FastScanner scanner = new FastScanner(System.in);\n System.out.println(Math.abs(scanner.nextInt() - 1));\n }\n\n private static class FastScanner {\n private final BufferedReader reader;\n private StringTokenizer tokenizer;\n\n FastScanner(final InputStream in) {\n reader = new BufferedReader(new InputStreamReader(in));\n }\n\n String next() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n\n return tokenizer.nextToken(\"\\n\");\n }\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "public class Main {\n public static void main(final String[] args) {\n final FastScanner scanner = new FastScanner(System.in);\n System.out.println(Math.abs(scanner.nextInt() - 1));\n }\n\n private static class FastScanner {\n private final BufferedReader reader;\n private StringTokenizer tokenizer;\n\n FastScanner(final InputStream in) {\n reader = new BufferedReader(new InputStreamReader(in));\n }\n\n String next() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n\n return tokenizer.nextToken(\"\\n\");\n }\n }\n}", "Main", "public static void main(final String[] args) {\n final FastScanner scanner = new FastScanner(System.in);\n System.out.println(Math.abs(scanner.nextInt() - 1));\n }", "main", "{\n final FastScanner scanner = new FastScanner(System.in);\n System.out.println(Math.abs(scanner.nextInt() - 1));\n }", "final FastScanner scanner = new FastScanner(System.in);", "scanner", "new FastScanner(System.in)", "System.out.println(Math.abs(scanner.nextInt() - 1))", "System.out.println", "System.out", "System", "System.out", "Math.abs(scanner.nextInt() - 1)", "Math.abs", "Math", "scanner.nextInt() - 1", "scanner.nextInt()", "scanner.nextInt", "scanner", "1", "final String[] args", "args", "private static class FastScanner {\n private final BufferedReader reader;\n private StringTokenizer tokenizer;\n\n FastScanner(final InputStream in) {\n reader = new BufferedReader(new InputStreamReader(in));\n }\n\n String next() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n\n return tokenizer.nextToken(\"\\n\");\n }\n }", "FastScanner", "private final BufferedReader reader;", "reader", "private StringTokenizer tokenizer;", "tokenizer", "FastScanner(final InputStream in) {\n reader = new BufferedReader(new InputStreamReader(in));\n }", "FastScanner", "{\n reader = new BufferedReader(new InputStreamReader(in));\n }", "reader = new BufferedReader(new InputStreamReader(in))", "reader", "new BufferedReader(new InputStreamReader(in))", "final InputStream in", "in", "String next() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }", "next", "{\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }", "if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }", "tokenizer == null || !tokenizer.hasMoreTokens()", "tokenizer == null", "tokenizer", "null", "!tokenizer.hasMoreTokens()", "tokenizer.hasMoreTokens()", "tokenizer.hasMoreTokens", "tokenizer", "{\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }", "try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }", "catch (final IOException e) {\n throw new RuntimeException(e);\n }", "final IOException e", "{\n throw new RuntimeException(e);\n }", "throw new RuntimeException(e);", "new RuntimeException(e)", "{\n tokenizer = new StringTokenizer(reader.readLine());\n }", "tokenizer = new StringTokenizer(reader.readLine())", "tokenizer", "new StringTokenizer(reader.readLine())", "return tokenizer.nextToken();", "tokenizer.nextToken()", "tokenizer.nextToken", "tokenizer", "int nextInt() {\n return Integer.parseInt(next());\n }", "nextInt", "{\n return Integer.parseInt(next());\n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "long nextLong() {\n return Long.parseLong(next());\n }", "nextLong", "{\n return Long.parseLong(next());\n }", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "double nextDouble() {\n return Double.parseDouble(next());\n }", "nextDouble", "{\n return Double.parseDouble(next());\n }", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "String nextLine() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n\n return tokenizer.nextToken(\"\\n\");\n }", "nextLine", "{\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n\n return tokenizer.nextToken(\"\\n\");\n }", "if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }", "tokenizer == null || !tokenizer.hasMoreTokens()", "tokenizer == null", "tokenizer", "null", "!tokenizer.hasMoreTokens()", "tokenizer.hasMoreTokens()", "tokenizer.hasMoreTokens", "tokenizer", "{\n try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }", "try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }", "catch (final IOException e) {\n throw new RuntimeException(e);\n }", "final IOException e", "{\n throw new RuntimeException(e);\n }", "throw new RuntimeException(e);", "new RuntimeException(e)", "{\n return reader.readLine();\n }", "return reader.readLine();", "reader.readLine()", "reader.readLine", "reader", "return tokenizer.nextToken(\"\\n\");", "tokenizer.nextToken(\"\\n\")", "tokenizer.nextToken", "tokenizer", "\"\\n\"", "public class Main {\n public static void main(final String[] args) {\n final FastScanner scanner = new FastScanner(System.in);\n System.out.println(Math.abs(scanner.nextInt() - 1));\n }\n\n private static class FastScanner {\n private final BufferedReader reader;\n private StringTokenizer tokenizer;\n\n FastScanner(final InputStream in) {\n reader = new BufferedReader(new InputStreamReader(in));\n }\n\n String next() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n\n return tokenizer.nextToken(\"\\n\");\n }\n }\n}", "public class Main {\n public static void main(final String[] args) {\n final FastScanner scanner = new FastScanner(System.in);\n System.out.println(Math.abs(scanner.nextInt() - 1));\n }\n\n private static class FastScanner {\n private final BufferedReader reader;\n private StringTokenizer tokenizer;\n\n FastScanner(final InputStream in) {\n reader = new BufferedReader(new InputStreamReader(in));\n }\n\n String next() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n return reader.readLine();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n\n return tokenizer.nextToken(\"\\n\");\n }\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(final String[] args) { final FastScanner scanner = new FastScanner(System.in); System.out.println(Math.abs(scanner.nextInt() - 1)); } private static class FastScanner { private final BufferedReader reader; private StringTokenizer tokenizer; FastScanner(final InputStream in) { reader = new BufferedReader(new InputStreamReader(in)); } String next() { if (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (final IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { if (tokenizer == null || !tokenizer.hasMoreTokens()) { try { return reader.readLine(); } catch (final IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken("\n"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 44, 8 ], [ 44, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 11, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 11, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 23, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 28, 33 ], [ 23, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 35, 40 ], [ 9, 41 ], [ 41, 42 ], [ 0, 43 ], [ 43, 44 ], [ 43, 45 ] ]
[ "import java.util.*;\nimport java.io.*;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n List<Integer> list = new ArrayList<Integer>();\n int n = sc.nextInt();\n //String s = sc.next();\n if(n==0){\n System.out.println(\"1\");\n }else{\n System.out.println(\"0\");\n }\n }\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n List<Integer> list = new ArrayList<Integer>();\n int n = sc.nextInt();\n //String s = sc.next();\n if(n==0){\n System.out.println(\"1\");\n }else{\n System.out.println(\"0\");\n }\n }\n}", "Main", "public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n List<Integer> list = new ArrayList<Integer>();\n int n = sc.nextInt();\n //String s = sc.next();\n if(n==0){\n System.out.println(\"1\");\n }else{\n System.out.println(\"0\");\n }\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n List<Integer> list = new ArrayList<Integer>();\n int n = sc.nextInt();\n //String s = sc.next();\n if(n==0){\n System.out.println(\"1\");\n }else{\n System.out.println(\"0\");\n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "List<Integer> list = new ArrayList<Integer>();", "list", "new ArrayList<Integer>()", "int n = sc.nextInt();", "n", "sc.nextInt()", "sc.nextInt", "sc", "if(n==0){\n System.out.println(\"1\");\n }else{\n System.out.println(\"0\");\n }", "n==0", "n", "0", "{\n System.out.println(\"1\");\n }", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "{\n System.out.println(\"0\");\n }", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n List<Integer> list = new ArrayList<Integer>();\n int n = sc.nextInt();\n //String s = sc.next();\n if(n==0){\n System.out.println(\"1\");\n }else{\n System.out.println(\"0\");\n }\n }\n}", "public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n List<Integer> list = new ArrayList<Integer>();\n int n = sc.nextInt();\n //String s = sc.next();\n if(n==0){\n System.out.println(\"1\");\n }else{\n System.out.println(\"0\");\n }\n }\n}", "Main" ]
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); List<Integer> list = new ArrayList<Integer>(); int n = sc.nextInt(); //String s = sc.next(); if(n==0){ System.out.println("1"); }else{ System.out.println("0"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 4, 18, 13, 2, 4, 18, 13, 17, 23, 13, 23, 13, 12, 13, 30, 38, 30, 41, 13, 20, 41, 13, 20, 4, 18, 20, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 43, 8 ], [ 43, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 13, 14 ], [ 12, 15 ], [ 15, 16 ], [ 16, 17 ], [ 17, 18 ], [ 15, 19 ], [ 9, 20 ], [ 20, 21 ], [ 9, 22 ], [ 22, 23 ], [ 43, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 28, 32 ], [ 32, 33 ], [ 32, 34 ], [ 28, 35 ], [ 35, 36 ], [ 36, 37 ], [ 35, 38 ], [ 35, 39 ], [ 24, 40 ], [ 40, 41 ], [ 0, 42 ], [ 42, 43 ], [ 42, 44 ] ]
[ "\nimport java.util.*;\nimport java.io.*;\n\n/**\n * Made by egor https://github.com/chermehdi/egor.\n * \n * @author Azuz\n * \n */\npublic class Main {\n\n void solve(Scanner in, PrintWriter out) {\n out.println(in.nextInt() ^ 1);\n }\n\n public static void main(String[] args) {\n try(Scanner in = new Scanner(System.in);\n PrintWriter out = new PrintWriter(System.out)) {\n new Main().solve(in, out);\n }\n }\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "public class Main {\n\n void solve(Scanner in, PrintWriter out) {\n out.println(in.nextInt() ^ 1);\n }\n\n public static void main(String[] args) {\n try(Scanner in = new Scanner(System.in);\n PrintWriter out = new PrintWriter(System.out)) {\n new Main().solve(in, out);\n }\n }\n}", "Main", "void solve(Scanner in, PrintWriter out) {\n out.println(in.nextInt() ^ 1);\n }", "solve", "{\n out.println(in.nextInt() ^ 1);\n }", "out.println(in.nextInt() ^ 1)", "out.println", "out", "in.nextInt() ^ 1", "in.nextInt()", "in.nextInt", "in", "1", "Scanner in", "in", "PrintWriter out", "out", "public static void main(String[] args) {\n try(Scanner in = new Scanner(System.in);\n PrintWriter out = new PrintWriter(System.out)) {\n new Main().solve(in, out);\n }\n }", "main", "{\n try(Scanner in = new Scanner(System.in);\n PrintWriter out = new PrintWriter(System.out)) {\n new Main().solve(in, out);\n }\n }", "try(Scanner in = new Scanner(System.in);\n PrintWriter out = new PrintWriter(System.out)) {\n new Main().solve(in, out);\n }", "{\n new Main().solve(in, out);\n }", "Scanner in = new Scanner(System.in)", "Scanner in = new Scanner(System.in)", "new Scanner(System.in)", "PrintWriter out = new PrintWriter(System.out)", "PrintWriter out = new PrintWriter(System.out)", "new PrintWriter(System.out)", "new Main().solve(in, out)", "new Main().solve", "new Main()", "in", "out", "String[] args", "args", "public class Main {\n\n void solve(Scanner in, PrintWriter out) {\n out.println(in.nextInt() ^ 1);\n }\n\n public static void main(String[] args) {\n try(Scanner in = new Scanner(System.in);\n PrintWriter out = new PrintWriter(System.out)) {\n new Main().solve(in, out);\n }\n }\n}", "public class Main {\n\n void solve(Scanner in, PrintWriter out) {\n out.println(in.nextInt() ^ 1);\n }\n\n public static void main(String[] args) {\n try(Scanner in = new Scanner(System.in);\n PrintWriter out = new PrintWriter(System.out)) {\n new Main().solve(in, out);\n }\n }\n}", "Main" ]
import java.util.*; import java.io.*; /** * Made by egor https://github.com/chermehdi/egor. * * @author Azuz * */ public class Main { void solve(Scanner in, PrintWriter out) { out.println(in.nextInt() ^ 1); } public static void main(String[] args) { try(Scanner in = new Scanner(System.in); PrintWriter out = new PrintWriter(System.out)) { new Main().solve(in, out); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 2, 17, 4, 18, 13, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 31, 8 ], [ 31, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 11, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 9, 28 ], [ 28, 29 ], [ 0, 30 ], [ 30, 31 ], [ 30, 32 ] ]
[ "import java.io.IOException;\nimport java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) throws IOException {\n Scanner sc =new Scanner(System.in);\n int num = (1-sc.nextInt());\n System.out.println(num);\n }\n}", "import java.io.IOException;", "IOException", "java.io", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) throws IOException {\n Scanner sc =new Scanner(System.in);\n int num = (1-sc.nextInt());\n System.out.println(num);\n }\n}", "Main", "public static void main(String[] args) throws IOException {\n Scanner sc =new Scanner(System.in);\n int num = (1-sc.nextInt());\n System.out.println(num);\n }", "main", "{\n Scanner sc =new Scanner(System.in);\n int num = (1-sc.nextInt());\n System.out.println(num);\n }", "Scanner sc =new Scanner(System.in);", "sc", "new Scanner(System.in)", "int num = (1-sc.nextInt());", "num", "(1-sc.nextInt())", "1", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println(num)", "System.out.println", "System.out", "System", "System.out", "num", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws IOException {\n Scanner sc =new Scanner(System.in);\n int num = (1-sc.nextInt());\n System.out.println(num);\n }\n}", "public class Main {\n public static void main(String[] args) throws IOException {\n Scanner sc =new Scanner(System.in);\n int num = (1-sc.nextInt());\n System.out.println(num);\n }\n}", "Main" ]
import java.io.IOException; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { Scanner sc =new Scanner(System.in); int num = (1-sc.nextInt()); System.out.println(num); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 8, 2, 13, 17, 17, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 37, 5 ], [ 37, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 22, 26 ], [ 22, 27 ], [ 8, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 28, 33 ], [ 6, 34 ], [ 34, 35 ], [ 0, 36 ], [ 36, 37 ], [ 36, 38 ] ]
[ "import java.util.*;\n\npublic class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tsc.close();\n\t\tint ans = (x == 1 ? 0 : 1);\n\t\tSystem.out.println(ans);\n\t}\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tsc.close();\n\t\tint ans = (x == 1 ? 0 : 1);\n\t\tSystem.out.println(ans);\n\t}\n}", "Main", "public static void main(String args[]) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tsc.close();\n\t\tint ans = (x == 1 ? 0 : 1);\n\t\tSystem.out.println(ans);\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tsc.close();\n\t\tint ans = (x == 1 ? 0 : 1);\n\t\tSystem.out.println(ans);\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "sc.close()", "sc.close", "sc", "int ans = (x == 1 ? 0 : 1);", "ans", "(x == 1 ? 0 : 1)", "x == 1", "x", "1", "0", "1", "System.out.println(ans)", "System.out.println", "System.out", "System", "System.out", "ans", "String args[]", "args", "public class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tsc.close();\n\t\tint ans = (x == 1 ? 0 : 1);\n\t\tSystem.out.println(ans);\n\t}\n}", "public class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tsc.close();\n\t\tint ans = (x == 1 ? 0 : 1);\n\t\tSystem.out.println(ans);\n\t}\n}", "Main" ]
import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); sc.close(); int ans = (x == 1 ? 0 : 1); System.out.println(ans); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 13, 17, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 34, 8 ], [ 34, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 21, 22 ], [ 22, 23 ], [ 22, 24 ], [ 20, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 25, 29 ], [ 25, 30 ], [ 9, 31 ], [ 31, 32 ], [ 0, 33 ], [ 33, 34 ], [ 33, 35 ] ]
[ "import java.util.*;\nimport java.math.BigInteger;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int h = sc.nextInt();\n System.out.println(h == 1 ? 0 : 1);\n\n }\n}", "import java.util.*;", "util.*", "java", "import java.math.BigInteger;", "BigInteger", "java.math", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int h = sc.nextInt();\n System.out.println(h == 1 ? 0 : 1);\n\n }\n}", "Main", "public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int h = sc.nextInt();\n System.out.println(h == 1 ? 0 : 1);\n\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int h = sc.nextInt();\n System.out.println(h == 1 ? 0 : 1);\n\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int h = sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println(h == 1 ? 0 : 1)", "System.out.println", "System.out", "System", "System.out", "h == 1 ? 0 : 1", "h == 1", "h", "1", "0", "1", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int h = sc.nextInt();\n System.out.println(h == 1 ? 0 : 1);\n\n }\n}", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int h = sc.nextInt();\n System.out.println(h == 1 ? 0 : 1);\n\n }\n}", "Main" ]
import java.util.*; import java.math.BigInteger; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int h = sc.nextInt(); System.out.println(h == 1 ? 0 : 1); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 13, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 6, 13, 41, 13, 18, 13, 13, 41, 13, 20, 17, 41, 13, 17, 41, 13, 17, 12, 13, 30, 14, 2, 13, 13, 30, 29, 17, 30, 0, 13, 17, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 4, 18, 13, 13, 14, 2, 13, 17, 30, 29, 17, 29, 17, 12, 13, 30, 29, 8, 4, 13, 18, 13, 40, 13, 40, 17, 12, 13, 30, 29, 2, 2, 17, 13, 2, 13, 17, 23, 13, 12, 13, 30, 42, 2, 4, 13, 40, 4, 13, 18, 13, 13, 40, 13, 12, 13, 30, 4, 13, 29, 4, 13, 12, 13, 30, 14, 40, 4, 13, 37, 20, 41, 13, 20, 41, 13, 4, 13, 42, 4, 13, 13, 30, 4, 18, 13, 13, 0, 13, 4, 13, 29, 4, 18, 13, 12, 13, 30, 29, 4, 13, 12, 13, 30, 14, 40, 4, 13, 37, 20, 41, 13, 17, 41, 13, 17, 41, 13, 4, 13, 14, 2, 13, 17, 30, 0, 13, 17, 0, 13, 4, 13, 14, 2, 2, 13, 17, 2, 17, 13, 30, 37, 20, 42, 17, 30, 14, 2, 2, 17, 13, 2, 13, 17, 30, 0, 13, 17, 0, 13, 2, 13, 17, 14, 2, 2, 13, 40, 17, 40, 4, 13, 13, 30, 29, 8, 13, 40, 13, 13, 30, 37, 20, 0, 13, 4, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 278, 11 ], [ 278, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 14, 23 ], [ 23, 24 ], [ 23, 25 ], [ 12, 26 ], [ 26, 27 ], [ 278, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 35, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 35, 40 ], [ 31, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 41, 46 ], [ 28, 47 ], [ 47, 48 ], [ 278, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 53, 55 ], [ 49, 56 ], [ 56, 57 ], [ 56, 58 ], [ 49, 60 ], [ 60, 61 ], [ 60, 62 ], [ 49, 63 ], [ 63, 64 ], [ 63, 65 ], [ 49, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 69, 73 ], [ 73, 74 ], [ 74, 75 ], [ 69, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 76, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 80, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 90, 91 ], [ 91, 92 ], [ 90, 93 ], [ 76, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 94, 98 ], [ 98, 99 ], [ 99, 100 ], [ 68, 101 ], [ 101, 102 ], [ 49, 103 ], [ 103, 104 ], [ 103, 105 ], [ 105, 106 ], [ 106, 107 ], [ 107, 108 ], [ 108, 109 ], [ 107, 110 ], [ 110, 111 ], [ 110, 112 ], [ 112, 113 ], [ 107, 114 ], [ 114, 115 ], [ 49, 116 ], [ 116, 117 ], [ 116, 118 ], [ 118, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 120, 124 ], [ 124, 125 ], [ 124, 126 ], [ 116, 127 ], [ 127, 128 ], [ 49, 129 ], [ 129, 130 ], [ 129, 131 ], [ 131, 132 ], [ 132, 133 ], [ 133, 134 ], [ 134, 135 ], [ 133, 136 ], [ 136, 137 ], [ 137, 138 ], [ 137, 139 ], [ 139, 140 ], [ 139, 141 ], [ 132, 142 ], [ 142, 143 ], [ 49, 144 ], [ 144, 145 ], [ 144, 146 ], [ 146, 147 ], [ 147, 148 ], [ 146, 149 ], [ 149, 150 ], [ 150, 151 ], [ 49, 152 ], [ 152, 153 ], [ 152, 154 ], [ 154, 155 ], [ 155, 156 ], [ 156, 157 ], [ 157, 158 ], [ 155, 159 ], [ 159, 160 ], [ 154, 161 ], [ 161, 162 ], [ 161, 163 ], [ 154, 164 ], [ 164, 165 ], [ 164, 166 ], [ 166, 167 ], [ 154, 168 ], [ 168, 169 ], [ 169, 170 ], [ 169, 171 ], [ 168, 172 ], [ 172, 173 ], [ 173, 174 ], [ 174, 175 ], [ 173, 176 ], [ 172, 177 ], [ 177, 178 ], [ 177, 179 ], [ 179, 180 ], [ 154, 181 ], [ 181, 182 ], [ 182, 183 ], [ 183, 184 ], [ 49, 185 ], [ 185, 186 ], [ 185, 187 ], [ 187, 188 ], [ 188, 189 ], [ 189, 190 ], [ 49, 191 ], [ 191, 192 ], [ 191, 193 ], [ 193, 194 ], [ 194, 195 ], [ 195, 196 ], [ 196, 197 ], [ 194, 198 ], [ 198, 199 ], [ 193, 200 ], [ 200, 201 ], [ 200, 202 ], [ 193, 203 ], [ 203, 204 ], [ 203, 205 ], [ 193, 206 ], [ 206, 207 ], [ 206, 208 ], [ 208, 209 ], [ 193, 210 ], [ 210, 211 ], [ 211, 212 ], [ 211, 213 ], [ 210, 214 ], [ 214, 215 ], [ 215, 216 ], [ 215, 217 ], [ 214, 218 ], [ 218, 219 ], [ 218, 220 ], [ 220, 221 ], [ 193, 222 ], [ 222, 223 ], [ 223, 224 ], [ 224, 225 ], [ 224, 226 ], [ 223, 227 ], [ 227, 228 ], [ 227, 229 ], [ 222, 230 ], [ 230, 231 ], [ 231, 232 ], [ 193, 233 ], [ 233, 234 ], [ 233, 235 ], [ 235, 236 ], [ 236, 237 ], [ 237, 238 ], [ 238, 239 ], [ 238, 240 ], [ 237, 241 ], [ 241, 242 ], [ 241, 243 ], [ 236, 244 ], [ 244, 245 ], [ 245, 246 ], [ 245, 247 ], [ 244, 248 ], [ 248, 249 ], [ 248, 250 ], [ 250, 251 ], [ 250, 252 ], [ 236, 253 ], [ 253, 254 ], [ 254, 255 ], [ 255, 256 ], [ 255, 257 ], [ 257, 258 ], [ 254, 259 ], [ 259, 260 ], [ 260, 261 ], [ 260, 262 ], [ 253, 263 ], [ 263, 264 ], [ 264, 265 ], [ 265, 266 ], [ 265, 267 ], [ 267, 268 ], [ 265, 269 ], [ 253, 270 ], [ 270, 271 ], [ 271, 272 ], [ 235, 273 ], [ 273, 274 ], [ 273, 275 ], [ 275, 276 ], [ 0, 277 ], [ 277, 278 ], [ 277, 279 ] ]
[ "import java.io.IOException;\nimport java.io.InputStream;\nimport java.util.NoSuchElementException;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tFS reader = new FS();\n\t\t// write reader\n\t\tint x = reader.nextInt();\n\t\t\n\t\tsolver(x);\n\t}\n\t\n\tpublic static void solver(int x) {\n\t\t// write logic\n\t\tif (x==0) System.out.println(1);\n\t\telse System.out.println(0);\n\t}\n\t\n\t// Read Class\n\tstatic class FS {\n\t\tprivate final InputStream in = System.in;\n\t\tprivate final byte[] buffer = new byte[1024];\n\t\tprivate int ptr = 0;\n\t\tprivate int buflen = 0;\n\t\tprivate boolean hasNextByte() {\n\t\t\tif (ptr < buflen) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\tptr = 0;\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t\tif (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\n\t\tprivate int readByte() { return hasNextByte() ? buffer[ptr++] : -1;}\n\t\tprivate boolean isPrintableChar(int c) {return 33 <= c && c <= 126;}\n\t\tprivate void skipUnprintable() {while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}\n\t\n\t\tpublic boolean hasNext() { skipUnprintable(); return hasNextByte();}\n\t\tpublic String next() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile(isPrintableChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tlong n = 0;\n\t\t\tboolean minus = false;\n\t\t\tint b = readByte();\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\tif (b < '0' || '9' < b) {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\twhile(true) {\n\t\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t}\n\t}\n}", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.util.NoSuchElementException;", "NoSuchElementException", "java.util", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tFS reader = new FS();\n\t\t// write reader\n\t\tint x = reader.nextInt();\n\t\t\n\t\tsolver(x);\n\t}\n\t\n\tpublic static void solver(int x) {\n\t\t// write logic\n\t\tif (x==0) System.out.println(1);\n\t\telse System.out.println(0);\n\t}\n\t\n\t// Read Class\n\tstatic class FS {\n\t\tprivate final InputStream in = System.in;\n\t\tprivate final byte[] buffer = new byte[1024];\n\t\tprivate int ptr = 0;\n\t\tprivate int buflen = 0;\n\t\tprivate boolean hasNextByte() {\n\t\t\tif (ptr < buflen) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\tptr = 0;\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t\tif (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\n\t\tprivate int readByte() { return hasNextByte() ? buffer[ptr++] : -1;}\n\t\tprivate boolean isPrintableChar(int c) {return 33 <= c && c <= 126;}\n\t\tprivate void skipUnprintable() {while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}\n\t\n\t\tpublic boolean hasNext() { skipUnprintable(); return hasNextByte();}\n\t\tpublic String next() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile(isPrintableChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tlong n = 0;\n\t\t\tboolean minus = false;\n\t\t\tint b = readByte();\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\tif (b < '0' || '9' < b) {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\twhile(true) {\n\t\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tFS reader = new FS();\n\t\t// write reader\n\t\tint x = reader.nextInt();\n\t\t\n\t\tsolver(x);\n\t}", "main", "{\n\t\tFS reader = new FS();\n\t\t// write reader\n\t\tint x = reader.nextInt();\n\t\t\n\t\tsolver(x);\n\t}", "FS reader = new FS();", "reader", "new FS()", "int x = reader.nextInt();", "x", "reader.nextInt()", "reader.nextInt", "reader", "solver(x)", "solver", "x", "String[] args", "args", "public static void solver(int x) {\n\t\t// write logic\n\t\tif (x==0) System.out.println(1);\n\t\telse System.out.println(0);\n\t}", "solver", "{\n\t\t// write logic\n\t\tif (x==0) System.out.println(1);\n\t\telse System.out.println(0);\n\t}", "if (x==0) System.out.println(1);\n\t\telse System.out.println(0);", "x==0", "x", "0", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "int x", "x", "static class FS {\n\t\tprivate final InputStream in = System.in;\n\t\tprivate final byte[] buffer = new byte[1024];\n\t\tprivate int ptr = 0;\n\t\tprivate int buflen = 0;\n\t\tprivate boolean hasNextByte() {\n\t\t\tif (ptr < buflen) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\tptr = 0;\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t\tif (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\n\t\tprivate int readByte() { return hasNextByte() ? buffer[ptr++] : -1;}\n\t\tprivate boolean isPrintableChar(int c) {return 33 <= c && c <= 126;}\n\t\tprivate void skipUnprintable() {while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}\n\t\n\t\tpublic boolean hasNext() { skipUnprintable(); return hasNextByte();}\n\t\tpublic String next() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile(isPrintableChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tlong n = 0;\n\t\t\tboolean minus = false;\n\t\t\tint b = readByte();\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\tif (b < '0' || '9' < b) {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\twhile(true) {\n\t\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t}\n\t}", "FS", "private final InputStream in = System.in;", "in", "System.in", "System", "System.in", "private final byte[] buffer = new byte[1024];", "buffer", "new byte[1024]", "1024", "private int ptr = 0;", "ptr", "0", "private int buflen = 0;", "buflen", "0", "private boolean hasNextByte() {\n\t\t\tif (ptr < buflen) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\tptr = 0;\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t\tif (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t}", "hasNextByte", "{\n\t\t\tif (ptr < buflen) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\tptr = 0;\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t\tif (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t}", "if (ptr < buflen) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\tptr = 0;\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t\tif (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}", "ptr < buflen", "ptr", "buflen", "{\n\t\t\t\treturn true;\n\t\t\t}", "return true;", "true", "{\n\t\t\t\tptr = 0;\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t\tif (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}", "ptr = 0", "ptr", "0", "try {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "IOException e", "{\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "e.printStackTrace()", "e.printStackTrace", "e", "{\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t}", "buflen = in.read(buffer)", "buflen", "in.read(buffer)", "in.read", "in", "buffer", "if (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}", "buflen <= 0", "buflen", "0", "{\n\t\t\t\t\treturn false;\n\t\t\t\t}", "return false;", "false", "return true;", "true", "private int readByte() { return hasNextByte() ? buffer[ptr++] : -1;}", "readByte", "{ return hasNextByte() ? buffer[ptr++] : -1;}", "return hasNextByte() ? buffer[ptr++] : -1;", "hasNextByte() ? buffer[ptr++] : -1", "hasNextByte()", "hasNextByte", "buffer[ptr++]", "buffer", "ptr++", "ptr", "-1", "1", "private boolean isPrintableChar(int c) {return 33 <= c && c <= 126;}", "isPrintableChar", "{return 33 <= c && c <= 126;}", "return 33 <= c && c <= 126;", "33 <= c && c <= 126", "33 <= c", "33", "c", "c <= 126", "c", "126", "int c", "c", "private void skipUnprintable() {while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}", "skipUnprintable", "{while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}", "while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;", "hasNextByte() && !isPrintableChar(buffer[ptr])", "hasNextByte()", "hasNextByte", "!isPrintableChar(buffer[ptr])", "isPrintableChar(buffer[ptr])", "isPrintableChar", "buffer[ptr]", "buffer", "ptr", "ptr++", "ptr", "public boolean hasNext() { skipUnprintable(); return hasNextByte();}", "hasNext", "{ skipUnprintable(); return hasNextByte();}", "skipUnprintable()", "skipUnprintable", "return hasNextByte();", "hasNextByte()", "hasNextByte", "public String next() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile(isPrintableChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}", "next", "{\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile(isPrintableChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}", "if (!hasNext()) throw new NoSuchElementException();", "!hasNext()", "hasNext()", "hasNext", "throw new NoSuchElementException();", "new NoSuchElementException()", "StringBuilder sb = new StringBuilder();", "sb", "new StringBuilder()", "int b = readByte();", "b", "readByte()", "readByte", "while(isPrintableChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}", "isPrintableChar(b)", "isPrintableChar", "b", "{\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}", "sb.appendCodePoint(b)", "sb.appendCodePoint", "sb", "b", "b = readByte()", "b", "readByte()", "readByte", "return sb.toString();", "sb.toString()", "sb.toString", "sb", "public int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}", "nextInt", "{\n\t\t\treturn (int)nextLong();\n\t\t}", "return (int)nextLong();", "(int)nextLong()", "nextLong", "public long nextLong() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tlong n = 0;\n\t\t\tboolean minus = false;\n\t\t\tint b = readByte();\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\tif (b < '0' || '9' < b) {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\twhile(true) {\n\t\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t}", "nextLong", "{\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tlong n = 0;\n\t\t\tboolean minus = false;\n\t\t\tint b = readByte();\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\tif (b < '0' || '9' < b) {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\twhile(true) {\n\t\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t}", "if (!hasNext()) throw new NoSuchElementException();", "!hasNext()", "hasNext()", "hasNext", "throw new NoSuchElementException();", "new NoSuchElementException()", "long n = 0;", "n", "0", "boolean minus = false;", "minus", "false", "int b = readByte();", "b", "readByte()", "readByte", "if (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}", "b == '-'", "b", "'-'", "{\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}", "minus = true", "minus", "true", "b = readByte()", "b", "readByte()", "readByte", "if (b < '0' || '9' < b) {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}", "b < '0' || '9' < b", "b < '0'", "b", "'0'", "'9' < b", "'9'", "b", "{\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}", "throw new NumberFormatException();", "new NumberFormatException()", "while(true) {\n\t\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}\n\t\t\t\tb = readByte();\n\t\t\t}", "true", "{\n\t\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}\n\t\t\t\tb = readByte();\n\t\t\t}", "if ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}", "'0' <= b && b <= '9'", "'0' <= b", "'0'", "b", "b <= '9'", "b", "'9'", "{\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t}", "n *= 10", "n", "10", "n += b - '0'", "n", "b - '0'", "b", "'0'", "if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}", "b == -1 || !isPrintableChar(b)", "b == -1", "b", "-1", "1", "!isPrintableChar(b)", "isPrintableChar(b)", "isPrintableChar", "b", "{\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t}", "return minus ? -n : n;", "minus ? -n : n", "minus", "-n", "n", "n", "{\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}", "throw new NumberFormatException();", "new NumberFormatException()", "b = readByte()", "b", "readByte()", "readByte", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tFS reader = new FS();\n\t\t// write reader\n\t\tint x = reader.nextInt();\n\t\t\n\t\tsolver(x);\n\t}\n\t\n\tpublic static void solver(int x) {\n\t\t// write logic\n\t\tif (x==0) System.out.println(1);\n\t\telse System.out.println(0);\n\t}\n\t\n\t// Read Class\n\tstatic class FS {\n\t\tprivate final InputStream in = System.in;\n\t\tprivate final byte[] buffer = new byte[1024];\n\t\tprivate int ptr = 0;\n\t\tprivate int buflen = 0;\n\t\tprivate boolean hasNextByte() {\n\t\t\tif (ptr < buflen) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\tptr = 0;\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t\tif (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\n\t\tprivate int readByte() { return hasNextByte() ? buffer[ptr++] : -1;}\n\t\tprivate boolean isPrintableChar(int c) {return 33 <= c && c <= 126;}\n\t\tprivate void skipUnprintable() {while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}\n\t\n\t\tpublic boolean hasNext() { skipUnprintable(); return hasNextByte();}\n\t\tpublic String next() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile(isPrintableChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tlong n = 0;\n\t\t\tboolean minus = false;\n\t\t\tint b = readByte();\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\tif (b < '0' || '9' < b) {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\twhile(true) {\n\t\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t}\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tFS reader = new FS();\n\t\t// write reader\n\t\tint x = reader.nextInt();\n\t\t\n\t\tsolver(x);\n\t}\n\t\n\tpublic static void solver(int x) {\n\t\t// write logic\n\t\tif (x==0) System.out.println(1);\n\t\telse System.out.println(0);\n\t}\n\t\n\t// Read Class\n\tstatic class FS {\n\t\tprivate final InputStream in = System.in;\n\t\tprivate final byte[] buffer = new byte[1024];\n\t\tprivate int ptr = 0;\n\t\tprivate int buflen = 0;\n\t\tprivate boolean hasNextByte() {\n\t\t\tif (ptr < buflen) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\tptr = 0;\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t\tif (buflen <= 0) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\n\t\tprivate int readByte() { return hasNextByte() ? buffer[ptr++] : -1;}\n\t\tprivate boolean isPrintableChar(int c) {return 33 <= c && c <= 126;}\n\t\tprivate void skipUnprintable() {while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}\n\t\n\t\tpublic boolean hasNext() { skipUnprintable(); return hasNextByte();}\n\t\tpublic String next() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile(isPrintableChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext()) throw new NoSuchElementException();\n\t\t\tlong n = 0;\n\t\t\tboolean minus = false;\n\t\t\tint b = readByte();\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\tif (b < '0' || '9' < b) {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\twhile(true) {\n\t\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\t\tn *= 10;\n\t\t\t\t\tn += b - '0';\n\t\t\t\t} else if(b == -1 || !isPrintableChar(b)) {\n\t\t\t\t\treturn minus ? -n : n;\n\t\t\t\t} else {\n\t\t\t\t\tthrow new NumberFormatException();\n\t\t\t\t}\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t}\n\t}\n}", "Main" ]
import java.io.IOException; import java.io.InputStream; import java.util.NoSuchElementException; public class Main { public static void main(String[] args) { FS reader = new FS(); // write reader int x = reader.nextInt(); solver(x); } public static void solver(int x) { // write logic if (x==0) System.out.println(1); else System.out.println(0); } // Read Class static class FS { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; } else { ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { return hasNextByte() ? buffer[ptr++] : -1;} private boolean isPrintableChar(int c) {return 33 <= c && c <= 126;} private void skipUnprintable() {while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;} public boolean hasNext() { skipUnprintable(); return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public int nextInt() { return (int)nextLong(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while(true) { if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; } else if(b == -1 || !isPrintableChar(b)) { return minus ? -n : n; } else { throw new NumberFormatException(); } b = readByte(); } } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 17, 41, 13, 4, 18, 13, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 41, 13, 4, 13, 14, 2, 13, 17, 4, 18, 13, 17, 4, 18, 13, 17, 12, 13, 30, 41, 13, 2, 2, 2, 13, 17, 13, 13, 29, 8, 2, 13, 17, 13, 2, 13, 13, 23, 13, 23, 13, 12, 13, 30, 0, 13, 13, 14, 2, 13, 17, 0, 13, 13, 14, 2, 13, 13, 0, 13, 13, 29, 13, 23, 13, 23, 13, 12, 13, 30, 0, 13, 4, 13, 13, 2, 13, 13, 14, 2, 13, 17, 0, 13, 13, 14, 2, 13, 13, 0, 13, 13, 29, 13, 23, 13, 23, 13, 12, 13, 30, 42, 40, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 0, 13, 20, 0, 13, 20, 0, 13, 20, 41, 13, 20, 4, 18, 13, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 294, 20 ], [ 294, 21 ], [ 21, 22 ], [ 21, 23 ], [ 294, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 26, 29 ], [ 294, 30 ], [ 30, 31 ], [ 294, 32 ], [ 32, 33 ], [ 294, 34 ], [ 34, 35 ], [ 294, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 38, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 43, 47 ], [ 47, 48 ], [ 48, 49 ], [ 47, 50 ], [ 43, 51 ], [ 51, 52 ], [ 52, 53 ], [ 51, 54 ], [ 294, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 60, 66 ], [ 57, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 68, 73 ], [ 73, 74 ], [ 73, 75 ], [ 55, 76 ], [ 76, 77 ], [ 55, 78 ], [ 78, 79 ], [ 294, 80 ], [ 80, 81 ], [ 80, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 90, 91 ], [ 90, 92 ], [ 82, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 93, 97 ], [ 97, 98 ], [ 97, 99 ], [ 82, 100 ], [ 100, 101 ], [ 80, 102 ], [ 102, 103 ], [ 80, 104 ], [ 104, 105 ], [ 294, 106 ], [ 106, 107 ], [ 106, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 111, 112 ], [ 111, 113 ], [ 111, 114 ], [ 114, 115 ], [ 114, 116 ], [ 108, 117 ], [ 117, 118 ], [ 118, 119 ], [ 118, 120 ], [ 117, 121 ], [ 121, 122 ], [ 121, 123 ], [ 108, 124 ], [ 124, 125 ], [ 125, 126 ], [ 125, 127 ], [ 124, 128 ], [ 128, 129 ], [ 128, 130 ], [ 108, 131 ], [ 131, 132 ], [ 106, 133 ], [ 133, 134 ], [ 106, 135 ], [ 135, 136 ], [ 294, 137 ], [ 137, 138 ], [ 137, 139 ], [ 139, 140 ], [ 140, 141 ], [ 141, 142 ], [ 142, 143 ], [ 143, 144 ], [ 140, 145 ], [ 145, 146 ], [ 146, 147 ], [ 146, 148 ], [ 139, 149 ], [ 149, 150 ], [ 150, 151 ], [ 151, 152 ], [ 294, 153 ], [ 153, 154 ], [ 153, 155 ], [ 155, 156 ], [ 156, 157 ], [ 157, 158 ], [ 158, 159 ], [ 157, 160 ], [ 160, 161 ], [ 294, 162 ], [ 162, 163 ], [ 162, 164 ], [ 164, 165 ], [ 165, 166 ], [ 166, 167 ], [ 167, 168 ], [ 166, 169 ], [ 169, 170 ], [ 294, 171 ], [ 171, 172 ], [ 171, 173 ], [ 173, 174 ], [ 174, 175 ], [ 175, 176 ], [ 176, 177 ], [ 175, 178 ], [ 178, 179 ], [ 294, 180 ], [ 180, 181 ], [ 180, 182 ], [ 182, 183 ], [ 183, 184 ], [ 183, 185 ], [ 182, 187 ], [ 187, 188 ], [ 188, 189 ], [ 189, 190 ], [ 189, 191 ], [ 187, 192 ], [ 192, 193 ], [ 192, 194 ], [ 187, 195 ], [ 195, 196 ], [ 196, 197 ], [ 187, 198 ], [ 199, 199 ], [ 199, 200 ], [ 200, 201 ], [ 201, 202 ], [ 201, 203 ], [ 200, 204 ], [ 204, 205 ], [ 182, 206 ], [ 206, 207 ], [ 180, 208 ], [ 208, 209 ], [ 294, 210 ], [ 210, 211 ], [ 210, 212 ], [ 212, 213 ], [ 213, 214 ], [ 213, 215 ], [ 212, 217 ], [ 217, 218 ], [ 218, 219 ], [ 219, 220 ], [ 219, 221 ], [ 217, 222 ], [ 222, 223 ], [ 222, 224 ], [ 217, 225 ], [ 225, 226 ], [ 226, 227 ], [ 217, 228 ], [ 229, 229 ], [ 229, 230 ], [ 230, 231 ], [ 231, 232 ], [ 231, 233 ], [ 230, 234 ], [ 234, 235 ], [ 212, 236 ], [ 236, 237 ], [ 210, 238 ], [ 238, 239 ], [ 294, 240 ], [ 240, 241 ], [ 240, 242 ], [ 242, 243 ], [ 243, 244 ], [ 243, 245 ], [ 242, 247 ], [ 247, 248 ], [ 248, 249 ], [ 249, 250 ], [ 249, 251 ], [ 247, 252 ], [ 252, 253 ], [ 252, 254 ], [ 247, 255 ], [ 255, 256 ], [ 256, 257 ], [ 247, 258 ], [ 259, 259 ], [ 259, 260 ], [ 260, 261 ], [ 261, 262 ], [ 261, 263 ], [ 260, 264 ], [ 264, 265 ], [ 242, 266 ], [ 266, 267 ], [ 240, 268 ], [ 268, 269 ], [ 294, 270 ], [ 270, 271 ], [ 270, 272 ], [ 272, 273 ], [ 273, 274 ], [ 273, 275 ], [ 272, 276 ], [ 276, 277 ], [ 276, 278 ], [ 272, 279 ], [ 279, 280 ], [ 279, 281 ], [ 272, 282 ], [ 282, 283 ], [ 282, 284 ], [ 272, 285 ], [ 285, 286 ], [ 286, 287 ], [ 272, 288 ], [ 288, 289 ], [ 289, 290 ], [ 270, 291 ], [ 291, 292 ], [ 0, 293 ], [ 293, 294 ], [ 293, 295 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.io.PrintWriter;\nimport java.math.BigInteger;\nimport java.util.*;\n \npublic class Main {\n \n void solve() throws IOException {\n int N = ni();\n if(N==0) out.println(1);\n else out.println(0);\n }\n\n final int mod = 1000000007;\n final BigInteger MOD = BigInteger.valueOf(mod);\n\n int mul(int x, int y){\n int val = (int)((x * 1L * y) % mod);\n return val>=0 ? val : val+mod;\n }\n int add(int x, int y) {\n x += y;\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }\n int sub(int x, int y){\n x = add(x,mod-y);\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }\n String ns() throws IOException {\n while (!tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine(), \" \");\n }\n return tok.nextToken();\n }\n \n int ni() throws IOException {\n return Integer.parseInt(ns());\n }\n \n long nl() throws IOException {\n return Long.parseLong(ns());\n }\n \n double nd() throws IOException {\n return Double.parseDouble(ns());\n }\n \n String[] nsa(int n) throws IOException {\n String[] res = new String[n];\n for (int i = 0; i < n; i++) {\n res[i] = ns();\n }\n return res;\n }\n \n int[] nia(int n) throws IOException {\n int[] res = new int[n];\n for (int i = 0; i < n; i++) {\n res[i] = ni();\n }\n return res;\n }\n \n long[] nla(int n) throws IOException {\n long[] res = new long[n];\n for (int i = 0; i < n; i++) {\n res[i] = nl();\n }\n return res;\n }\n \n static BufferedReader in;\n static PrintWriter out;\n static StringTokenizer tok;\n \n public static void main(String[] args) throws IOException {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n tok = new StringTokenizer(\"\");\n Main main = new Main();\n main.solve();\n out.close();\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.math.BigInteger;", "BigInteger", "java.math", "import java.util.*;", "util.*", "java", "public class Main {\n \n void solve() throws IOException {\n int N = ni();\n if(N==0) out.println(1);\n else out.println(0);\n }\n\n final int mod = 1000000007;\n final BigInteger MOD = BigInteger.valueOf(mod);\n\n int mul(int x, int y){\n int val = (int)((x * 1L * y) % mod);\n return val>=0 ? val : val+mod;\n }\n int add(int x, int y) {\n x += y;\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }\n int sub(int x, int y){\n x = add(x,mod-y);\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }\n String ns() throws IOException {\n while (!tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine(), \" \");\n }\n return tok.nextToken();\n }\n \n int ni() throws IOException {\n return Integer.parseInt(ns());\n }\n \n long nl() throws IOException {\n return Long.parseLong(ns());\n }\n \n double nd() throws IOException {\n return Double.parseDouble(ns());\n }\n \n String[] nsa(int n) throws IOException {\n String[] res = new String[n];\n for (int i = 0; i < n; i++) {\n res[i] = ns();\n }\n return res;\n }\n \n int[] nia(int n) throws IOException {\n int[] res = new int[n];\n for (int i = 0; i < n; i++) {\n res[i] = ni();\n }\n return res;\n }\n \n long[] nla(int n) throws IOException {\n long[] res = new long[n];\n for (int i = 0; i < n; i++) {\n res[i] = nl();\n }\n return res;\n }\n \n static BufferedReader in;\n static PrintWriter out;\n static StringTokenizer tok;\n \n public static void main(String[] args) throws IOException {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n tok = new StringTokenizer(\"\");\n Main main = new Main();\n main.solve();\n out.close();\n }\n}", "Main", "final int mod = 1000000007;", "mod", "1000000007", "final BigInteger MOD = BigInteger.valueOf(mod);", "MOD", "BigInteger.valueOf(mod)", "BigInteger.valueOf", "BigInteger", "mod", "static BufferedReader in;", "in", "static PrintWriter out;", "out", "static StringTokenizer tok;", "tok", "void solve() throws IOException {\n int N = ni();\n if(N==0) out.println(1);\n else out.println(0);\n }", "solve", "{\n int N = ni();\n if(N==0) out.println(1);\n else out.println(0);\n }", "int N = ni();", "N", "ni()", "ni", "if(N==0) out.println(1);\n else out.println(0);", "N==0", "N", "0", "out.println(1)", "out.println", "out", "1", "out.println(0)", "out.println", "out", "0", "int mul(int x, int y){\n int val = (int)((x * 1L * y) % mod);\n return val>=0 ? val : val+mod;\n }", "mul", "{\n int val = (int)((x * 1L * y) % mod);\n return val>=0 ? val : val+mod;\n }", "int val = (int)((x * 1L * y) % mod);", "val", "(int)((x * 1L * y) % mod)", "(x * 1L * y)", "x * 1L * y", "x", "1L", "y", "mod", "return val>=0 ? val : val+mod;", "val>=0 ? val : val+mod", "val>=0", "val", "0", "val", "val+mod", "val", "mod", "int x", "x", "int y", "y", "int add(int x, int y) {\n x += y;\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }", "add", "{\n x += y;\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }", "x += y", "x", "y", "if(x < 0) x += mod;", "x < 0", "x", "0", "x += mod", "x", "mod", "if(x>=mod) x -= mod;", "x>=mod", "x", "mod", "x -= mod", "x", "mod", "return x;", "x", "int x", "x", "int y", "y", "int sub(int x, int y){\n x = add(x,mod-y);\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }", "sub", "{\n x = add(x,mod-y);\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }", "x = add(x,mod-y)", "x", "add(x,mod-y)", "add", "x", "mod-y", "mod", "y", "if(x < 0) x += mod;", "x < 0", "x", "0", "x += mod", "x", "mod", "if(x>=mod) x -= mod;", "x>=mod", "x", "mod", "x -= mod", "x", "mod", "return x;", "x", "int x", "x", "int y", "y", "String ns() throws IOException {\n while (!tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine(), \" \");\n }\n return tok.nextToken();\n }", "ns", "{\n while (!tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine(), \" \");\n }\n return tok.nextToken();\n }", "while (!tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine(), \" \");\n }", "!tok.hasMoreTokens()", "tok.hasMoreTokens()", "tok.hasMoreTokens", "tok", "{\n tok = new StringTokenizer(in.readLine(), \" \");\n }", "tok = new StringTokenizer(in.readLine(), \" \")", "tok", "new StringTokenizer(in.readLine(), \" \")", "return tok.nextToken();", "tok.nextToken()", "tok.nextToken", "tok", "int ni() throws IOException {\n return Integer.parseInt(ns());\n }", "ni", "{\n return Integer.parseInt(ns());\n }", "return Integer.parseInt(ns());", "Integer.parseInt(ns())", "Integer.parseInt", "Integer", "ns()", "ns", "long nl() throws IOException {\n return Long.parseLong(ns());\n }", "nl", "{\n return Long.parseLong(ns());\n }", "return Long.parseLong(ns());", "Long.parseLong(ns())", "Long.parseLong", "Long", "ns()", "ns", "double nd() throws IOException {\n return Double.parseDouble(ns());\n }", "nd", "{\n return Double.parseDouble(ns());\n }", "return Double.parseDouble(ns());", "Double.parseDouble(ns())", "Double.parseDouble", "Double", "ns()", "ns", "String[] nsa(int n) throws IOException {\n String[] res = new String[n];\n for (int i = 0; i < n; i++) {\n res[i] = ns();\n }\n return res;\n }", "nsa", "{\n String[] res = new String[n];\n for (int i = 0; i < n; i++) {\n res[i] = ns();\n }\n return res;\n }", "String[] res = new String[n];", "res", "new String[n]", "n", "for (int i = 0; i < n; i++) {\n res[i] = ns();\n }", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "{\n res[i] = ns();\n }", "{\n res[i] = ns();\n }", "res[i] = ns()", "res[i]", "res", "i", "ns()", "ns", "return res;", "res", "int n", "n", "int[] nia(int n) throws IOException {\n int[] res = new int[n];\n for (int i = 0; i < n; i++) {\n res[i] = ni();\n }\n return res;\n }", "nia", "{\n int[] res = new int[n];\n for (int i = 0; i < n; i++) {\n res[i] = ni();\n }\n return res;\n }", "int[] res = new int[n];", "res", "new int[n]", "n", "for (int i = 0; i < n; i++) {\n res[i] = ni();\n }", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "{\n res[i] = ni();\n }", "{\n res[i] = ni();\n }", "res[i] = ni()", "res[i]", "res", "i", "ni()", "ni", "return res;", "res", "int n", "n", "long[] nla(int n) throws IOException {\n long[] res = new long[n];\n for (int i = 0; i < n; i++) {\n res[i] = nl();\n }\n return res;\n }", "nla", "{\n long[] res = new long[n];\n for (int i = 0; i < n; i++) {\n res[i] = nl();\n }\n return res;\n }", "long[] res = new long[n];", "res", "new long[n]", "n", "for (int i = 0; i < n; i++) {\n res[i] = nl();\n }", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "{\n res[i] = nl();\n }", "{\n res[i] = nl();\n }", "res[i] = nl()", "res[i]", "res", "i", "nl()", "nl", "return res;", "res", "int n", "n", "public static void main(String[] args) throws IOException {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n tok = new StringTokenizer(\"\");\n Main main = new Main();\n main.solve();\n out.close();\n }", "main", "{\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n tok = new StringTokenizer(\"\");\n Main main = new Main();\n main.solve();\n out.close();\n }", "in = new BufferedReader(new InputStreamReader(System.in))", "in", "new BufferedReader(new InputStreamReader(System.in))", "out = new PrintWriter(System.out)", "out", "new PrintWriter(System.out)", "tok = new StringTokenizer(\"\")", "tok", "new StringTokenizer(\"\")", "Main main = new Main();", "main", "new Main()", "main.solve()", "main.solve", "main", "out.close()", "out.close", "out", "String[] args", "args", "public class Main {\n \n void solve() throws IOException {\n int N = ni();\n if(N==0) out.println(1);\n else out.println(0);\n }\n\n final int mod = 1000000007;\n final BigInteger MOD = BigInteger.valueOf(mod);\n\n int mul(int x, int y){\n int val = (int)((x * 1L * y) % mod);\n return val>=0 ? val : val+mod;\n }\n int add(int x, int y) {\n x += y;\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }\n int sub(int x, int y){\n x = add(x,mod-y);\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }\n String ns() throws IOException {\n while (!tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine(), \" \");\n }\n return tok.nextToken();\n }\n \n int ni() throws IOException {\n return Integer.parseInt(ns());\n }\n \n long nl() throws IOException {\n return Long.parseLong(ns());\n }\n \n double nd() throws IOException {\n return Double.parseDouble(ns());\n }\n \n String[] nsa(int n) throws IOException {\n String[] res = new String[n];\n for (int i = 0; i < n; i++) {\n res[i] = ns();\n }\n return res;\n }\n \n int[] nia(int n) throws IOException {\n int[] res = new int[n];\n for (int i = 0; i < n; i++) {\n res[i] = ni();\n }\n return res;\n }\n \n long[] nla(int n) throws IOException {\n long[] res = new long[n];\n for (int i = 0; i < n; i++) {\n res[i] = nl();\n }\n return res;\n }\n \n static BufferedReader in;\n static PrintWriter out;\n static StringTokenizer tok;\n \n public static void main(String[] args) throws IOException {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n tok = new StringTokenizer(\"\");\n Main main = new Main();\n main.solve();\n out.close();\n }\n}", "public class Main {\n \n void solve() throws IOException {\n int N = ni();\n if(N==0) out.println(1);\n else out.println(0);\n }\n\n final int mod = 1000000007;\n final BigInteger MOD = BigInteger.valueOf(mod);\n\n int mul(int x, int y){\n int val = (int)((x * 1L * y) % mod);\n return val>=0 ? val : val+mod;\n }\n int add(int x, int y) {\n x += y;\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }\n int sub(int x, int y){\n x = add(x,mod-y);\n if(x < 0) x += mod;\n if(x>=mod) x -= mod;\n return x;\n }\n String ns() throws IOException {\n while (!tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine(), \" \");\n }\n return tok.nextToken();\n }\n \n int ni() throws IOException {\n return Integer.parseInt(ns());\n }\n \n long nl() throws IOException {\n return Long.parseLong(ns());\n }\n \n double nd() throws IOException {\n return Double.parseDouble(ns());\n }\n \n String[] nsa(int n) throws IOException {\n String[] res = new String[n];\n for (int i = 0; i < n; i++) {\n res[i] = ns();\n }\n return res;\n }\n \n int[] nia(int n) throws IOException {\n int[] res = new int[n];\n for (int i = 0; i < n; i++) {\n res[i] = ni();\n }\n return res;\n }\n \n long[] nla(int n) throws IOException {\n long[] res = new long[n];\n for (int i = 0; i < n; i++) {\n res[i] = nl();\n }\n return res;\n }\n \n static BufferedReader in;\n static PrintWriter out;\n static StringTokenizer tok;\n \n public static void main(String[] args) throws IOException {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n tok = new StringTokenizer(\"\");\n Main main = new Main();\n main.solve();\n out.close();\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.math.BigInteger; import java.util.*; public class Main { void solve() throws IOException { int N = ni(); if(N==0) out.println(1); else out.println(0); } final int mod = 1000000007; final BigInteger MOD = BigInteger.valueOf(mod); int mul(int x, int y){ int val = (int)((x * 1L * y) % mod); return val>=0 ? val : val+mod; } int add(int x, int y) { x += y; if(x < 0) x += mod; if(x>=mod) x -= mod; return x; } int sub(int x, int y){ x = add(x,mod-y); if(x < 0) x += mod; if(x>=mod) x -= mod; return x; } String ns() throws IOException { while (!tok.hasMoreTokens()) { tok = new StringTokenizer(in.readLine(), " "); } return tok.nextToken(); } int ni() throws IOException { return Integer.parseInt(ns()); } long nl() throws IOException { return Long.parseLong(ns()); } double nd() throws IOException { return Double.parseDouble(ns()); } String[] nsa(int n) throws IOException { String[] res = new String[n]; for (int i = 0; i < n; i++) { res[i] = ns(); } return res; } int[] nia(int n) throws IOException { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = ni(); } return res; } long[] nla(int n) throws IOException { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nl(); } return res; } static BufferedReader in; static PrintWriter out; static StringTokenizer tok; public static void main(String[] args) throws IOException { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); tok = new StringTokenizer(""); Main main = new Main(); main.solve(); out.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 17, 41, 13, 20, 4, 18, 13, 17, 17, 4, 18, 13, 17, 17, 4, 18, 13, 17, 17, 4, 18, 13, 17, 17, 4, 18, 13, 17, 17, 4, 18, 13, 17, 17, 4, 18, 13, 17, 17, 41, 13, 41, 13, 41, 13, 42, 2, 40, 13, 17, 30, 0, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 17, 13, 23, 13, 12, 13, 30, 42, 2, 13, 13, 30, 41, 13, 2, 2, 13, 13, 17, 14, 2, 18, 13, 13, 13, 0, 13, 2, 13, 17, 0, 13, 2, 13, 17, 29, 13, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 30, 29, 13, 29, 4, 13, 13, 2, 13, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 29, 17, 14, 2, 2, 2, 2, 13, 17, 17, 2, 13, 17, 2, 13, 17, 29, 17, 30, 11, 1, 41, 13, 17, 2, 13, 4, 18, 13, 13, 1, 0, 13, 17, 30, 30, 14, 2, 2, 13, 13, 17, 29, 17, 29, 17, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 17, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 4, 18, 13, 29, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 304, 23 ], [ 304, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 26, 30 ], [ 30, 31 ], [ 30, 32 ], [ 26, 33 ], [ 33, 34 ], [ 33, 35 ], [ 26, 36 ], [ 36, 37 ], [ 37, 38 ], [ 36, 39 ], [ 36, 40 ], [ 26, 41 ], [ 41, 42 ], [ 42, 43 ], [ 41, 44 ], [ 41, 45 ], [ 26, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 46, 50 ], [ 26, 51 ], [ 51, 52 ], [ 52, 53 ], [ 51, 54 ], [ 51, 55 ], [ 26, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 56, 60 ], [ 26, 61 ], [ 61, 62 ], [ 62, 63 ], [ 61, 64 ], [ 61, 65 ], [ 26, 66 ], [ 66, 67 ], [ 67, 68 ], [ 66, 69 ], [ 66, 70 ], [ 26, 71 ], [ 71, 72 ], [ 26, 73 ], [ 73, 74 ], [ 26, 75 ], [ 75, 76 ], [ 26, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 78, 81 ], [ 77, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 85, 86 ], [ 86, 87 ], [ 82, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 93, 94 ], [ 93, 95 ], [ 24, 96 ], [ 96, 97 ], [ 304, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 102, 104 ], [ 101, 105 ], [ 105, 106 ], [ 106, 107 ], [ 106, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 108, 112 ], [ 105, 113 ], [ 113, 114 ], [ 114, 115 ], [ 115, 116 ], [ 115, 117 ], [ 114, 118 ], [ 113, 119 ], [ 119, 120 ], [ 119, 121 ], [ 121, 122 ], [ 121, 123 ], [ 113, 124 ], [ 124, 125 ], [ 124, 126 ], [ 126, 127 ], [ 126, 128 ], [ 100, 129 ], [ 129, 130 ], [ 98, 131 ], [ 131, 132 ], [ 98, 133 ], [ 133, 134 ], [ 98, 135 ], [ 135, 136 ], [ 98, 137 ], [ 137, 138 ], [ 304, 139 ], [ 139, 140 ], [ 139, 141 ], [ 141, 142 ], [ 142, 143 ], [ 143, 144 ], [ 143, 145 ], [ 142, 146 ], [ 146, 147 ], [ 147, 148 ], [ 141, 149 ], [ 149, 150 ], [ 150, 151 ], [ 150, 152 ], [ 150, 153 ], [ 153, 154 ], [ 153, 155 ], [ 139, 156 ], [ 156, 157 ], [ 139, 158 ], [ 158, 159 ], [ 304, 160 ], [ 160, 161 ], [ 160, 162 ], [ 162, 163 ], [ 163, 164 ], [ 164, 165 ], [ 164, 166 ], [ 163, 167 ], [ 167, 168 ], [ 163, 169 ], [ 169, 170 ], [ 170, 171 ], [ 171, 172 ], [ 172, 173 ], [ 173, 174 ], [ 173, 175 ], [ 172, 176 ], [ 171, 177 ], [ 177, 178 ], [ 177, 179 ], [ 170, 180 ], [ 180, 181 ], [ 180, 182 ], [ 169, 183 ], [ 183, 184 ], [ 169, 185 ], [ 185, 186 ], [ 186, 187 ], [ 187, 188 ], [ 188, 189 ], [ 188, 190 ], [ 186, 191 ], [ 191, 192 ], [ 191, 193 ], [ 193, 194 ], [ 194, 195 ], [ 193, 196 ], [ 186, 197 ], [ 197, 198 ], [ 198, 199 ], [ 198, 200 ], [ 186, 201 ], [ 202, 202 ], [ 202, 203 ], [ 203, 204 ], [ 204, 205 ], [ 205, 206 ], [ 205, 207 ], [ 204, 208 ], [ 203, 209 ], [ 209, 210 ], [ 185, 211 ], [ 211, 212 ], [ 160, 213 ], [ 213, 214 ], [ 304, 215 ], [ 215, 216 ], [ 215, 217 ], [ 217, 218 ], [ 215, 219 ], [ 219, 220 ], [ 215, 221 ], [ 221, 222 ], [ 221, 223 ], [ 223, 224 ], [ 224, 225 ], [ 224, 226 ], [ 215, 227 ], [ 227, 228 ], [ 227, 229 ], [ 229, 230 ], [ 230, 231 ], [ 231, 232 ], [ 232, 233 ], [ 232, 234 ], [ 231, 235 ], [ 235, 236 ], [ 236, 237 ], [ 237, 238 ], [ 230, 239 ], [ 239, 240 ], [ 240, 241 ], [ 241, 242 ], [ 241, 243 ], [ 243, 244 ], [ 244, 245 ], [ 245, 246 ], [ 240, 247 ], [ 247, 248 ], [ 248, 249 ], [ 248, 250 ], [ 229, 251 ], [ 251, 252 ], [ 252, 253 ], [ 253, 254 ], [ 215, 255 ], [ 255, 256 ], [ 255, 257 ], [ 257, 258 ], [ 258, 259 ], [ 259, 260 ], [ 260, 261 ], [ 259, 262 ], [ 262, 263 ], [ 215, 264 ], [ 264, 265 ], [ 264, 266 ], [ 266, 267 ], [ 267, 268 ], [ 268, 269 ], [ 269, 270 ], [ 268, 271 ], [ 271, 272 ], [ 215, 273 ], [ 273, 274 ], [ 273, 275 ], [ 275, 276 ], [ 276, 277 ], [ 277, 278 ], [ 278, 279 ], [ 277, 280 ], [ 280, 281 ], [ 215, 282 ], [ 282, 283 ], [ 282, 284 ], [ 284, 285 ], [ 285, 286 ], [ 285, 287 ], [ 284, 288 ], [ 288, 289 ], [ 289, 290 ], [ 289, 291 ], [ 291, 292 ], [ 292, 293 ], [ 293, 294 ], [ 288, 295 ], [ 295, 296 ], [ 296, 297 ], [ 296, 298 ], [ 298, 299 ], [ 299, 300 ], [ 284, 301 ], [ 301, 302 ], [ 0, 303 ], [ 303, 304 ], [ 303, 305 ] ]
[ "\n\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.Arrays;\nimport java.util.HashMap;\nimport java.util.Scanner;\nimport java.util.StringTokenizer;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n int k= 1;\n HashMap<String,Integer> hashMap = new HashMap<>();\n hashMap.put(\"SUN\",7);\n hashMap.put(\"MON\",6);\n hashMap.put(\"TUE\",5);\n hashMap.put(\"WED\",4);\n hashMap.put(\"THU\",3);\n hashMap.put(\"FRI\",2);\n hashMap.put(\"SAT\",1);\n String s1;\n int a,b;\n while(k-->0){\n a=s.nextInt();\n System.out.println(1-a);\n }\n }\n\n private static int binary_search(\n int arr[], int l,\n int h, int x)\n {\n while (l <= h) {\n int mid = (l + h) / 2;\n if (arr[mid] <= x)\n l = mid + 1;\n else\n h = mid - 1;\n }\n return h;\n }\n static int gcd(int a, int b)\n {\n if(b==0) {\n return a;\n }\n return gcd(b,a%b);\n }\n private static boolean isPrime(int n) {\n if (n == 2)\n return true;\n else if ((n % 2 == 0 && n > 2) || n < 2)\n return false;\n else {\n for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }\n return true;\n }\n\n\n }\n\n static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new\n InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.util.Arrays;", "Arrays", "java.util", "import java.util.HashMap;", "HashMap", "java.util", "import java.util.Scanner;", "Scanner", "java.util", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "public class Main {\n public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n int k= 1;\n HashMap<String,Integer> hashMap = new HashMap<>();\n hashMap.put(\"SUN\",7);\n hashMap.put(\"MON\",6);\n hashMap.put(\"TUE\",5);\n hashMap.put(\"WED\",4);\n hashMap.put(\"THU\",3);\n hashMap.put(\"FRI\",2);\n hashMap.put(\"SAT\",1);\n String s1;\n int a,b;\n while(k-->0){\n a=s.nextInt();\n System.out.println(1-a);\n }\n }\n\n private static int binary_search(\n int arr[], int l,\n int h, int x)\n {\n while (l <= h) {\n int mid = (l + h) / 2;\n if (arr[mid] <= x)\n l = mid + 1;\n else\n h = mid - 1;\n }\n return h;\n }\n static int gcd(int a, int b)\n {\n if(b==0) {\n return a;\n }\n return gcd(b,a%b);\n }\n private static boolean isPrime(int n) {\n if (n == 2)\n return true;\n else if ((n % 2 == 0 && n > 2) || n < 2)\n return false;\n else {\n for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }\n return true;\n }\n\n\n }\n\n static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new\n InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n}", "Main", "public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n int k= 1;\n HashMap<String,Integer> hashMap = new HashMap<>();\n hashMap.put(\"SUN\",7);\n hashMap.put(\"MON\",6);\n hashMap.put(\"TUE\",5);\n hashMap.put(\"WED\",4);\n hashMap.put(\"THU\",3);\n hashMap.put(\"FRI\",2);\n hashMap.put(\"SAT\",1);\n String s1;\n int a,b;\n while(k-->0){\n a=s.nextInt();\n System.out.println(1-a);\n }\n }", "main", "{\n Scanner s = new Scanner(System.in);\n int k= 1;\n HashMap<String,Integer> hashMap = new HashMap<>();\n hashMap.put(\"SUN\",7);\n hashMap.put(\"MON\",6);\n hashMap.put(\"TUE\",5);\n hashMap.put(\"WED\",4);\n hashMap.put(\"THU\",3);\n hashMap.put(\"FRI\",2);\n hashMap.put(\"SAT\",1);\n String s1;\n int a,b;\n while(k-->0){\n a=s.nextInt();\n System.out.println(1-a);\n }\n }", "Scanner s = new Scanner(System.in);", "s", "new Scanner(System.in)", "int k= 1;", "k", "1", "HashMap<String,Integer> hashMap = new HashMap<>();", "hashMap", "new HashMap<>()", "hashMap.put(\"SUN\",7)", "hashMap.put", "hashMap", "\"SUN\"", "7", "hashMap.put(\"MON\",6)", "hashMap.put", "hashMap", "\"MON\"", "6", "hashMap.put(\"TUE\",5)", "hashMap.put", "hashMap", "\"TUE\"", "5", "hashMap.put(\"WED\",4)", "hashMap.put", "hashMap", "\"WED\"", "4", "hashMap.put(\"THU\",3)", "hashMap.put", "hashMap", "\"THU\"", "3", "hashMap.put(\"FRI\",2)", "hashMap.put", "hashMap", "\"FRI\"", "2", "hashMap.put(\"SAT\",1)", "hashMap.put", "hashMap", "\"SAT\"", "1", "String s1;", "s1", "int a", "a", "b;", "b", "while(k-->0){\n a=s.nextInt();\n System.out.println(1-a);\n }", "k-->0", "k--", "k", "0", "{\n a=s.nextInt();\n System.out.println(1-a);\n }", "a=s.nextInt()", "a", "s.nextInt()", "s.nextInt", "s", "System.out.println(1-a)", "System.out.println", "System.out", "System", "System.out", "1-a", "1", "a", "String[] args", "args", "private static int binary_search(\n int arr[], int l,\n int h, int x)\n {\n while (l <= h) {\n int mid = (l + h) / 2;\n if (arr[mid] <= x)\n l = mid + 1;\n else\n h = mid - 1;\n }\n return h;\n }", "binary_search", "{\n while (l <= h) {\n int mid = (l + h) / 2;\n if (arr[mid] <= x)\n l = mid + 1;\n else\n h = mid - 1;\n }\n return h;\n }", "while (l <= h) {\n int mid = (l + h) / 2;\n if (arr[mid] <= x)\n l = mid + 1;\n else\n h = mid - 1;\n }", "l <= h", "l", "h", "{\n int mid = (l + h) / 2;\n if (arr[mid] <= x)\n l = mid + 1;\n else\n h = mid - 1;\n }", "int mid = (l + h) / 2;", "mid", "(l + h) / 2", "(l + h)", "l", "h", "2", "if (arr[mid] <= x)\n l = mid + 1;\n else\n h = mid - 1;", "arr[mid] <= x", "arr[mid]", "arr", "mid", "x", "l = mid + 1", "l", "mid + 1", "mid", "1", "h = mid - 1", "h", "mid - 1", "mid", "1", "return h;", "h", "int arr[]", "arr", "int l", "l", "int h", "h", "int x", "x", "static int gcd(int a, int b)\n {\n if(b==0) {\n return a;\n }\n return gcd(b,a%b);\n }", "gcd", "{\n if(b==0) {\n return a;\n }\n return gcd(b,a%b);\n }", "if(b==0) {\n return a;\n }", "b==0", "b", "0", "{\n return a;\n }", "return a;", "a", "return gcd(b,a%b);", "gcd(b,a%b)", "gcd", "b", "a%b", "a", "b", "int a", "a", "int b", "b", "private static boolean isPrime(int n) {\n if (n == 2)\n return true;\n else if ((n % 2 == 0 && n > 2) || n < 2)\n return false;\n else {\n for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }\n return true;\n }\n\n\n }", "isPrime", "{\n if (n == 2)\n return true;\n else if ((n % 2 == 0 && n > 2) || n < 2)\n return false;\n else {\n for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }\n return true;\n }\n\n\n }", "if (n == 2)\n return true;\n else if ((n % 2 == 0 && n > 2) || n < 2)\n return false;\n else {\n for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }\n return true;\n }", "n == 2", "n", "2", "return true;", "true", "if ((n % 2 == 0 && n > 2) || n < 2)\n return false;\n else {\n for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }\n return true;\n }", "(n % 2 == 0 && n > 2) || n < 2", "(n % 2 == 0 && n > 2)", "n % 2 == 0", "n % 2", "n", "2", "0", "n > 2", "n", "2", "n < 2", "n", "2", "return false;", "false", "{\n for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }\n return true;\n }", "for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }", "int i = 3;", "int i = 3;", "i", "3", "i <= (int) Math.sqrt(n)", "i", "(int) Math.sqrt(n)", "Math.sqrt", "Math", "n", "i += 2", "i += 2", "i", "2", "{\n if (n % i == 0)\n return false;\n }", "{\n if (n % i == 0)\n return false;\n }", "if (n % i == 0)\n return false;", "n % i == 0", "n % i", "n", "i", "0", "return false;", "false", "return true;", "true", "int n", "n", "static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new\n InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }", "FastReader", "BufferedReader br;", "br", "StringTokenizer st;", "st", "public FastReader() {\n br = new BufferedReader(new\n InputStreamReader(System.in));\n }", "FastReader", "{\n br = new BufferedReader(new\n InputStreamReader(System.in));\n }", "br = new BufferedReader(new\n InputStreamReader(System.in))", "br", "new BufferedReader(new\n InputStreamReader(System.in))", "String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "next", "{\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }", "st == null || !st.hasMoreElements()", "st == null", "st", "null", "!st.hasMoreElements()", "st.hasMoreElements()", "st.hasMoreElements", "st", "{\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }", "try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }", "catch (IOException e) {\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n st = new StringTokenizer(br.readLine());\n }", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "int nextInt() {\n return Integer.parseInt(next());\n }", "nextInt", "{\n return Integer.parseInt(next());\n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "long nextLong() {\n return Long.parseLong(next());\n }", "nextLong", "{\n return Long.parseLong(next());\n }", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "double nextDouble() {\n return Double.parseDouble(next());\n }", "nextDouble", "{\n return Double.parseDouble(next());\n }", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }", "nextLine", "{\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }", "String str = \"\";", "str", "\"\"", "try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }", "catch (IOException e) {\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n str = br.readLine();\n }", "str = br.readLine()", "str", "br.readLine()", "br.readLine", "br", "return str;", "str", "public class Main {\n public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n int k= 1;\n HashMap<String,Integer> hashMap = new HashMap<>();\n hashMap.put(\"SUN\",7);\n hashMap.put(\"MON\",6);\n hashMap.put(\"TUE\",5);\n hashMap.put(\"WED\",4);\n hashMap.put(\"THU\",3);\n hashMap.put(\"FRI\",2);\n hashMap.put(\"SAT\",1);\n String s1;\n int a,b;\n while(k-->0){\n a=s.nextInt();\n System.out.println(1-a);\n }\n }\n\n private static int binary_search(\n int arr[], int l,\n int h, int x)\n {\n while (l <= h) {\n int mid = (l + h) / 2;\n if (arr[mid] <= x)\n l = mid + 1;\n else\n h = mid - 1;\n }\n return h;\n }\n static int gcd(int a, int b)\n {\n if(b==0) {\n return a;\n }\n return gcd(b,a%b);\n }\n private static boolean isPrime(int n) {\n if (n == 2)\n return true;\n else if ((n % 2 == 0 && n > 2) || n < 2)\n return false;\n else {\n for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }\n return true;\n }\n\n\n }\n\n static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new\n InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n}", "public class Main {\n public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n int k= 1;\n HashMap<String,Integer> hashMap = new HashMap<>();\n hashMap.put(\"SUN\",7);\n hashMap.put(\"MON\",6);\n hashMap.put(\"TUE\",5);\n hashMap.put(\"WED\",4);\n hashMap.put(\"THU\",3);\n hashMap.put(\"FRI\",2);\n hashMap.put(\"SAT\",1);\n String s1;\n int a,b;\n while(k-->0){\n a=s.nextInt();\n System.out.println(1-a);\n }\n }\n\n private static int binary_search(\n int arr[], int l,\n int h, int x)\n {\n while (l <= h) {\n int mid = (l + h) / 2;\n if (arr[mid] <= x)\n l = mid + 1;\n else\n h = mid - 1;\n }\n return h;\n }\n static int gcd(int a, int b)\n {\n if(b==0) {\n return a;\n }\n return gcd(b,a%b);\n }\n private static boolean isPrime(int n) {\n if (n == 2)\n return true;\n else if ((n % 2 == 0 && n > 2) || n < 2)\n return false;\n else {\n for (int i = 3; i <= (int) Math.sqrt(n); i += 2) {\n if (n % i == 0)\n return false;\n }\n return true;\n }\n\n\n }\n\n static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new\n InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.HashMap; import java.util.Scanner; import java.util.StringTokenizer; public class Main { public static void main(String[] args) { Scanner s = new Scanner(System.in); int k= 1; HashMap<String,Integer> hashMap = new HashMap<>(); hashMap.put("SUN",7); hashMap.put("MON",6); hashMap.put("TUE",5); hashMap.put("WED",4); hashMap.put("THU",3); hashMap.put("FRI",2); hashMap.put("SAT",1); String s1; int a,b; while(k-->0){ a=s.nextInt(); System.out.println(1-a); } } private static int binary_search( int arr[], int l, int h, int x) { while (l <= h) { int mid = (l + h) / 2; if (arr[mid] <= x) l = mid + 1; else h = mid - 1; } return h; } static int gcd(int a, int b) { if(b==0) { return a; } return gcd(b,a%b); } private static boolean isPrime(int n) { if (n == 2) return true; else if ((n % 2 == 0 && n > 2) || n < 2) return false; else { for (int i = 3; i <= (int) Math.sqrt(n); i += 2) { if (n % i == 0) return false; } return true; } } static class FastReader { BufferedReader br; StringTokenizer st; public FastReader() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 38, 5 ], [ 38, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 17, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 6, 35 ], [ 35, 36 ], [ 0, 37 ], [ 37, 38 ], [ 37, 39 ] ]
[ "\n\n\nimport java.util.Scanner;\npublic class Main {\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int x=scan.nextInt();\n if(x==0){\n System.out.print(1);\n }else {\n System.out.print(0);\n }\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int x=scan.nextInt();\n if(x==0){\n System.out.print(1);\n }else {\n System.out.print(0);\n }\n }\n}", "Main", "public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int x=scan.nextInt();\n if(x==0){\n System.out.print(1);\n }else {\n System.out.print(0);\n }\n }", "main", "{\n Scanner scan = new Scanner(System.in);\n int x=scan.nextInt();\n if(x==0){\n System.out.print(1);\n }else {\n System.out.print(0);\n }\n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int x=scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "if(x==0){\n System.out.print(1);\n }else {\n System.out.print(0);\n }", "x==0", "x", "0", "{\n System.out.print(1);\n }", "System.out.print(1)", "System.out.print", "System.out", "System", "System.out", "1", "{\n System.out.print(0);\n }", "System.out.print(0)", "System.out.print", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int x=scan.nextInt();\n if(x==0){\n System.out.print(1);\n }else {\n System.out.print(0);\n }\n }\n}", "public class Main {\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int x=scan.nextInt();\n if(x==0){\n System.out.print(1);\n }else {\n System.out.print(0);\n }\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); int x=scan.nextInt(); if(x==0){ System.out.print(1); }else { System.out.print(0); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 2, 13, 17, 41, 13, 17, 14, 2, 2, 13, 17, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 22, 23 ], [ 22, 24 ], [ 0, 25 ], [ 68, 26 ], [ 68, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 29, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 29, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 29, 43 ], [ 43, 44 ], [ 43, 45 ], [ 29, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 47, 51 ], [ 46, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 29, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 56, 61 ], [ 29, 62 ], [ 62, 63 ], [ 63, 64 ], [ 27, 65 ], [ 65, 66 ], [ 0, 67 ], [ 67, 68 ], [ 67, 69 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.InputStreamReader;\nimport java.io.OutputStream;\nimport java.io.PrintWriter;\nimport java.util.StringTokenizer;\nimport java.util.Scanner;\n\npublic class Main\n{\n\tpublic static void main(String[] args)\n\t{\n Scanner scan = new Scanner(System.in);\n int str = scan.nextInt();\n \n int input=str+2;\n \n int output=0;\n \n if(input%2==0){\n output=1;\n }\n \n System.out.println(output);\n scan.close();\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.io.OutputStream;", "OutputStream", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "import java.util.Scanner;", "Scanner", "java.util", "public class Main\n{\n\tpublic static void main(String[] args)\n\t{\n Scanner scan = new Scanner(System.in);\n int str = scan.nextInt();\n \n int input=str+2;\n \n int output=0;\n \n if(input%2==0){\n output=1;\n }\n \n System.out.println(output);\n scan.close();\n\t}\n}", "Main", "public static void main(String[] args)\n\t{\n Scanner scan = new Scanner(System.in);\n int str = scan.nextInt();\n \n int input=str+2;\n \n int output=0;\n \n if(input%2==0){\n output=1;\n }\n \n System.out.println(output);\n scan.close();\n\t}", "main", "{\n Scanner scan = new Scanner(System.in);\n int str = scan.nextInt();\n \n int input=str+2;\n \n int output=0;\n \n if(input%2==0){\n output=1;\n }\n \n System.out.println(output);\n scan.close();\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int str = scan.nextInt();", "str", "scan.nextInt()", "scan.nextInt", "scan", "int input=str+2;", "input", "str+2", "str", "2", "int output=0;", "output", "0", "if(input%2==0){\n output=1;\n }", "input%2==0", "input%2", "input", "2", "0", "{\n output=1;\n }", "output=1", "output", "1", "System.out.println(output)", "System.out.println", "System.out", "System", "System.out", "output", "scan.close()", "scan.close", "scan", "String[] args", "args", "public class Main\n{\n\tpublic static void main(String[] args)\n\t{\n Scanner scan = new Scanner(System.in);\n int str = scan.nextInt();\n \n int input=str+2;\n \n int output=0;\n \n if(input%2==0){\n output=1;\n }\n \n System.out.println(output);\n scan.close();\n\t}\n}", "public class Main\n{\n\tpublic static void main(String[] args)\n\t{\n Scanner scan = new Scanner(System.in);\n int str = scan.nextInt();\n \n int input=str+2;\n \n int output=0;\n \n if(input%2==0){\n output=1;\n }\n \n System.out.println(output);\n scan.close();\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.io.PrintWriter; import java.util.StringTokenizer; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int str = scan.nextInt(); int input=str+2; int output=0; if(input%2==0){ output=1; } System.out.println(output); scan.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 22, 23 ], [ 22, 24 ], [ 0, 25 ], [ 25, 26 ], [ 25, 27 ], [ 0, 28 ], [ 65, 29 ], [ 65, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 32, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 42, 43 ], [ 32, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 49, 54 ], [ 44, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 56, 61 ], [ 30, 62 ], [ 62, 63 ], [ 0, 64 ], [ 64, 65 ], [ 64, 66 ] ]
[ "\n\nimport java.util.Map.Entry;\nimport java.lang.reflect.Method;\nimport java.util.*;\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.util.ArrayDeque;\nimport java.util.Arrays;\nimport java.util.Deque;\nimport java.util.ArrayList;\n\n//import org.w3c.dom.css.Counter;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n //String S = sc.next();\n int s = Integer.parseInt(sc.next());\n if(s ==1){\n System.out.println(0);\n }else{\n System.out.println(1);\n }\n \n }\n}", "import java.util.Map.Entry;", "Entry", "java.util.Map", "import java.lang.reflect.Method;", "Method", "java.lang.reflect", "import java.util.*;", "util.*", "java", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.util.ArrayDeque;", "ArrayDeque", "java.util", "import java.util.Arrays;", "Arrays", "java.util", "import java.util.Deque;", "Deque", "java.util", "import java.util.ArrayList;", "ArrayList", "java.util", "public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n //String S = sc.next();\n int s = Integer.parseInt(sc.next());\n if(s ==1){\n System.out.println(0);\n }else{\n System.out.println(1);\n }\n \n }\n}", "Main", "public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n //String S = sc.next();\n int s = Integer.parseInt(sc.next());\n if(s ==1){\n System.out.println(0);\n }else{\n System.out.println(1);\n }\n \n }", "main", "{\n Scanner sc = new Scanner(System.in);\n //String S = sc.next();\n int s = Integer.parseInt(sc.next());\n if(s ==1){\n System.out.println(0);\n }else{\n System.out.println(1);\n }\n \n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int s = Integer.parseInt(sc.next());", "s", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc", "if(s ==1){\n System.out.println(0);\n }else{\n System.out.println(1);\n }", "s ==1", "s", "1", "{\n System.out.println(0);\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "{\n System.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n //String S = sc.next();\n int s = Integer.parseInt(sc.next());\n if(s ==1){\n System.out.println(0);\n }else{\n System.out.println(1);\n }\n \n }\n}", "public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n //String S = sc.next();\n int s = Integer.parseInt(sc.next());\n if(s ==1){\n System.out.println(0);\n }else{\n System.out.println(1);\n }\n \n }\n}", "Main" ]
import java.util.Map.Entry; import java.lang.reflect.Method; import java.util.*; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.ArrayDeque; import java.util.Arrays; import java.util.Deque; import java.util.ArrayList; //import org.w3c.dom.css.Counter; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); //String S = sc.next(); int s = Integer.parseInt(sc.next()); if(s ==1){ System.out.println(0); }else{ System.out.println(1); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 12, 13, 30, 0, 13, 20, 41, 13, 4, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 12, 13, 30, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 18, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 79, 8 ], [ 79, 9 ], [ 9, 10 ], [ 79, 11 ], [ 11, 12 ], [ 11, 13 ], [ 13, 14 ], [ 14, 15 ], [ 14, 16 ], [ 13, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 13, 21 ], [ 21, 22 ], [ 22, 23 ], [ 22, 24 ], [ 21, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 26, 31 ], [ 21, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 33, 38 ], [ 11, 39 ], [ 39, 40 ], [ 79, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 79, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 52, 55 ], [ 55, 56 ], [ 56, 57 ], [ 79, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 62, 65 ], [ 65, 66 ], [ 66, 67 ], [ 79, 68 ], [ 68, 69 ], [ 68, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 72, 75 ], [ 75, 76 ], [ 76, 77 ], [ 0, 78 ], [ 78, 79 ], [ 78, 80 ] ]
[ "\nimport java.util.AbstractMap;\nimport java.util.Scanner;\n\npublic class Main {\n\n static Scanner scanner;\n\n public static void main(String[] args) {\n scanner = new Scanner(System.in);\n\n int N=gi();\n\n if(N==1) {\n System.out.println(0);\n } else {\n \tSystem.out.println(1);\n }\n }\n\n // 文字列として入力を取得\n public static String gs() {\n return scanner.next();\n }\n\n // intとして入力を取得\n public static int gi() {\n return Integer.parseInt(scanner.next());\n }\n\n // longとして入力を取得\n public static long gl() {\n return Long.parseLong(scanner.next());\n }\n\n // doubleとして入力を取得\n public static double gd() {\n return Double.parseDouble(scanner.next());\n }\n}", "import java.util.AbstractMap;", "AbstractMap", "java.util", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n static Scanner scanner;\n\n public static void main(String[] args) {\n scanner = new Scanner(System.in);\n\n int N=gi();\n\n if(N==1) {\n System.out.println(0);\n } else {\n \tSystem.out.println(1);\n }\n }\n\n // 文字列として入力を取得\n public static String gs() {\n return scanner.next();\n }\n\n // intとして入力を取得\n public static int gi() {\n return Integer.parseInt(scanner.next());\n }\n\n // longとして入力を取得\n public static long gl() {\n return Long.parseLong(scanner.next());\n }\n\n // doubleとして入力を取得\n public static double gd() {\n return Double.parseDouble(scanner.next());\n }\n}", "Main", "static Scanner scanner;", "scanner", "public static void main(String[] args) {\n scanner = new Scanner(System.in);\n\n int N=gi();\n\n if(N==1) {\n System.out.println(0);\n } else {\n \tSystem.out.println(1);\n }\n }", "main", "{\n scanner = new Scanner(System.in);\n\n int N=gi();\n\n if(N==1) {\n System.out.println(0);\n } else {\n \tSystem.out.println(1);\n }\n }", "scanner = new Scanner(System.in)", "scanner", "new Scanner(System.in)", "int N=gi();", "N", "gi()", "gi", "if(N==1) {\n System.out.println(0);\n } else {\n \tSystem.out.println(1);\n }", "N==1", "N", "1", "{\n System.out.println(0);\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "{\n \tSystem.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "String[] args", "args", "// 文字列として入力を取得\n public static String gs() {\n return scanner.next();\n }", "gs", "{\n return scanner.next();\n }", "return scanner.next();", "scanner.next()", "scanner.next", "scanner", "// intとして入力を取得\n public static int gi() {\n return Integer.parseInt(scanner.next());\n }", "gi", "{\n return Integer.parseInt(scanner.next());\n }", "return Integer.parseInt(scanner.next());", "Integer.parseInt(scanner.next())", "Integer.parseInt", "Integer", "scanner.next()", "scanner.next", "scanner", "// longとして入力を取得\n public static long gl() {\n return Long.parseLong(scanner.next());\n }", "gl", "{\n return Long.parseLong(scanner.next());\n }", "return Long.parseLong(scanner.next());", "Long.parseLong(scanner.next())", "Long.parseLong", "Long", "scanner.next()", "scanner.next", "scanner", "// doubleとして入力を取得\n public static double gd() {\n return Double.parseDouble(scanner.next());\n }", "gd", "{\n return Double.parseDouble(scanner.next());\n }", "return Double.parseDouble(scanner.next());", "Double.parseDouble(scanner.next())", "Double.parseDouble", "Double", "scanner.next()", "scanner.next", "scanner", "public class Main {\n\n static Scanner scanner;\n\n public static void main(String[] args) {\n scanner = new Scanner(System.in);\n\n int N=gi();\n\n if(N==1) {\n System.out.println(0);\n } else {\n \tSystem.out.println(1);\n }\n }\n\n // 文字列として入力を取得\n public static String gs() {\n return scanner.next();\n }\n\n // intとして入力を取得\n public static int gi() {\n return Integer.parseInt(scanner.next());\n }\n\n // longとして入力を取得\n public static long gl() {\n return Long.parseLong(scanner.next());\n }\n\n // doubleとして入力を取得\n public static double gd() {\n return Double.parseDouble(scanner.next());\n }\n}", "public class Main {\n\n static Scanner scanner;\n\n public static void main(String[] args) {\n scanner = new Scanner(System.in);\n\n int N=gi();\n\n if(N==1) {\n System.out.println(0);\n } else {\n \tSystem.out.println(1);\n }\n }\n\n // 文字列として入力を取得\n public static String gs() {\n return scanner.next();\n }\n\n // intとして入力を取得\n public static int gi() {\n return Integer.parseInt(scanner.next());\n }\n\n // longとして入力を取得\n public static long gl() {\n return Long.parseLong(scanner.next());\n }\n\n // doubleとして入力を取得\n public static double gd() {\n return Double.parseDouble(scanner.next());\n }\n}", "Main" ]
import java.util.AbstractMap; import java.util.Scanner; public class Main { static Scanner scanner; public static void main(String[] args) { scanner = new Scanner(System.in); int N=gi(); if(N==1) { System.out.println(0); } else { System.out.println(1); } } // 文字列として入力を取得 public static String gs() { return scanner.next(); } // intとして入力を取得 public static int gi() { return Integer.parseInt(scanner.next()); } // longとして入力を取得 public static long gl() { return Long.parseLong(scanner.next()); } // doubleとして入力を取得 public static double gd() { return Double.parseDouble(scanner.next()); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 42, 5 ], [ 42, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 17, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 28, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 33, 38 ], [ 6, 39 ], [ 39, 40 ], [ 0, 41 ], [ 41, 42 ], [ 41, 43 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\t// 整数の入力\n\t\tint a = sc.nextInt();\n\n\t\tif (a == 0) {\n\t\t\tSystem.out.println(1);\n\t\t} else if (a == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\t// 整数の入力\n\t\tint a = sc.nextInt();\n\n\t\tif (a == 0) {\n\t\t\tSystem.out.println(1);\n\t\t} else if (a == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\t// 整数の入力\n\t\tint a = sc.nextInt();\n\n\t\tif (a == 0) {\n\t\t\tSystem.out.println(1);\n\t\t} else if (a == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}", "main", "{\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\t// 整数の入力\n\t\tint a = sc.nextInt();\n\n\t\tif (a == 0) {\n\t\t\tSystem.out.println(1);\n\t\t} else if (a == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int a = sc.nextInt();", "a", "sc.nextInt()", "sc.nextInt", "sc", "if (a == 0) {\n\t\t\tSystem.out.println(1);\n\t\t} else if (a == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}", "a == 0", "a", "0", "{\n\t\t\tSystem.out.println(1);\n\t\t}", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "if (a == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}", "a == 1", "a", "1", "{\n\t\t\tSystem.out.println(0);\n\t\t}", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\t// 整数の入力\n\t\tint a = sc.nextInt();\n\n\t\tif (a == 0) {\n\t\t\tSystem.out.println(1);\n\t\t} else if (a == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\t// 整数の入力\n\t\tint a = sc.nextInt();\n\n\t\tif (a == 0) {\n\t\t\tSystem.out.println(1);\n\t\t} else if (a == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); // 整数の入力 int a = sc.nextInt(); if (a == 0) { System.out.println(1); } else if (a == 1) { System.out.println(0); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 13, 17, 17, 17, 12, 13, 30, 4, 18, 20, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 37, 5 ], [ 37, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 17, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 22, 26 ], [ 22, 27 ], [ 37, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 28, 34 ], [ 34, 35 ], [ 0, 36 ], [ 36, 37 ], [ 36, 38 ] ]
[ "import java.util.*;\n\npublic class Main{\n void solve(){\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(x == 1 ? 0 : 1);\n }\n\n public static void main(String[] args){\n new Main().solve();\n }\n}", "import java.util.*;", "util.*", "java", "public class Main{\n void solve(){\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(x == 1 ? 0 : 1);\n }\n\n public static void main(String[] args){\n new Main().solve();\n }\n}", "Main", "void solve(){\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(x == 1 ? 0 : 1);\n }", "solve", "{\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(x == 1 ? 0 : 1);\n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "System.out.println(x == 1 ? 0 : 1)", "System.out.println", "System.out", "System", "System.out", "x == 1 ? 0 : 1", "x == 1", "x", "1", "0", "1", "public static void main(String[] args){\n new Main().solve();\n }", "main", "{\n new Main().solve();\n }", "new Main().solve()", "new Main().solve", "new Main()", "String[] args", "args", "public class Main{\n void solve(){\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(x == 1 ? 0 : 1);\n }\n\n public static void main(String[] args){\n new Main().solve();\n }\n}", "public class Main{\n void solve(){\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(x == 1 ? 0 : 1);\n }\n\n public static void main(String[] args){\n new Main().solve();\n }\n}", "Main" ]
import java.util.*; public class Main{ void solve(){ Scanner scan = new Scanner(System.in); int x = scan.nextInt(); System.out.println(x == 1 ? 0 : 1); } public static void main(String[] args){ new Main().solve(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 41, 13, 4, 13, 4, 18, 13, 2, 17, 13, 12, 13, 30, 29, 4, 13, 4, 13, 12, 13, 30, 29, 4, 13, 4, 13, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 38, 5, 13, 30, 4, 18, 13, 4, 13, 17, 30, 0, 13, 20, 0, 13, 20, 4, 13, 4, 18, 13, 4, 18, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 22, 23 ], [ 22, 24 ], [ 0, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 25, 29 ], [ 29, 30 ], [ 25, 31 ], [ 31, 32 ], [ 25, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 35, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 43, 45 ], [ 25, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 25, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 25, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 65, 74 ], [ 74, 75 ], [ 75, 76 ], [ 75, 77 ], [ 64, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 25, 82 ], [ 82, 83 ], [ 82, 84 ], [ 84, 85 ], [ 85, 86 ], [ 86, 87 ], [ 86, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 88, 92 ], [ 92, 93 ], [ 92, 94 ], [ 85, 95 ], [ 95, 96 ], [ 96, 97 ], [ 96, 98 ], [ 95, 99 ], [ 99, 100 ], [ 99, 101 ], [ 95, 102 ], [ 102, 103 ], [ 95, 104 ], [ 104, 105 ], [ 105, 106 ], [ 95, 107 ], [ 107, 108 ], [ 108, 109 ], [ 82, 110 ], [ 110, 111 ] ]
[ "// Created By Jefferson Samuel on 23/08/20 at 2:47 PM\n\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.io.PrintWriter;\nimport java.util.StringTokenizer;\n\nimport static java.lang.Integer.parseInt;\nimport static java.lang.Long.parseLong;\nimport static java.lang.System.exit;\n\nclass Main {\n\n static void solve() throws Exception {\n\n int n = scanInt();\n out.println(1^n);\n }\n\n\n\n\n // dont touch this side\n static int scanInt() throws IOException {\n return parseInt(scanString());\n }\n\n static long scanLong() throws IOException {\n return parseLong(scanString());\n }\n\n static String scanString() throws IOException {\n while (tok == null || !tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine());\n }\n return tok.nextToken();\n }\n\n static BufferedReader in;\n static PrintWriter out;\n static StringTokenizer tok;\n\n public static void main(String[] args) {\n try {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n solve();\n in.close();\n out.close();\n } catch (Throwable e) {\n e.printStackTrace();\n exit(1);\n }\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "import static java.lang.Integer.parseInt;", "import static java.lang.Integer.parseInt;", "import static java.lang.Integer.parseInt;", "import static java.lang.Long.parseLong;", "import static java.lang.Long.parseLong;", "import static java.lang.Long.parseLong;", "import static java.lang.System.exit;", "import static java.lang.System.exit;", "import static java.lang.System.exit;", "class Main {\n\n static void solve() throws Exception {\n\n int n = scanInt();\n out.println(1^n);\n }\n\n\n\n\n // dont touch this side\n static int scanInt() throws IOException {\n return parseInt(scanString());\n }\n\n static long scanLong() throws IOException {\n return parseLong(scanString());\n }\n\n static String scanString() throws IOException {\n while (tok == null || !tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine());\n }\n return tok.nextToken();\n }\n\n static BufferedReader in;\n static PrintWriter out;\n static StringTokenizer tok;\n\n public static void main(String[] args) {\n try {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n solve();\n in.close();\n out.close();\n } catch (Throwable e) {\n e.printStackTrace();\n exit(1);\n }\n }\n}", "Main", "static BufferedReader in;", "in", "static PrintWriter out;", "out", "static StringTokenizer tok;", "tok", "static void solve() throws Exception {\n\n int n = scanInt();\n out.println(1^n);\n }", "solve", "{\n\n int n = scanInt();\n out.println(1^n);\n }", "int n = scanInt();", "n", "scanInt()", "scanInt", "out.println(1^n)", "out.println", "out", "1^n", "1", "n", "// dont touch this side\n static int scanInt() throws IOException {\n return parseInt(scanString());\n }", "scanInt", "{\n return parseInt(scanString());\n }", "return parseInt(scanString());", "parseInt(scanString())", "parseInt", "scanString()", "scanString", "static long scanLong() throws IOException {\n return parseLong(scanString());\n }", "scanLong", "{\n return parseLong(scanString());\n }", "return parseLong(scanString());", "parseLong(scanString())", "parseLong", "scanString()", "scanString", "static String scanString() throws IOException {\n while (tok == null || !tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine());\n }\n return tok.nextToken();\n }", "scanString", "{\n while (tok == null || !tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine());\n }\n return tok.nextToken();\n }", "while (tok == null || !tok.hasMoreTokens()) {\n tok = new StringTokenizer(in.readLine());\n }", "tok == null || !tok.hasMoreTokens()", "tok == null", "tok", "null", "!tok.hasMoreTokens()", "tok.hasMoreTokens()", "tok.hasMoreTokens", "tok", "{\n tok = new StringTokenizer(in.readLine());\n }", "tok = new StringTokenizer(in.readLine())", "tok", "new StringTokenizer(in.readLine())", "return tok.nextToken();", "tok.nextToken()", "tok.nextToken", "tok", "public static void main(String[] args) {\n try {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n solve();\n in.close();\n out.close();\n } catch (Throwable e) {\n e.printStackTrace();\n exit(1);\n }\n }", "main", "{\n try {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n solve();\n in.close();\n out.close();\n } catch (Throwable e) {\n e.printStackTrace();\n exit(1);\n }\n }", "try {\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n solve();\n in.close();\n out.close();\n } catch (Throwable e) {\n e.printStackTrace();\n exit(1);\n }", "catch (Throwable e) {\n e.printStackTrace();\n exit(1);\n }", "Throwable e", "{\n e.printStackTrace();\n exit(1);\n }", "e.printStackTrace()", "e.printStackTrace", "e", "exit(1)", "exit", "1", "{\n in = new BufferedReader(new InputStreamReader(System.in));\n out = new PrintWriter(System.out);\n solve();\n in.close();\n out.close();\n }", "in = new BufferedReader(new InputStreamReader(System.in))", "in", "new BufferedReader(new InputStreamReader(System.in))", "out = new PrintWriter(System.out)", "out", "new PrintWriter(System.out)", "solve()", "solve", "in.close()", "in.close", "in", "out.close()", "out.close", "out", "String[] args", "args" ]
// Created By Jefferson Samuel on 23/08/20 at 2:47 PM import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.StringTokenizer; import static java.lang.Integer.parseInt; import static java.lang.Long.parseLong; import static java.lang.System.exit; class Main { static void solve() throws Exception { int n = scanInt(); out.println(1^n); } // dont touch this side static int scanInt() throws IOException { return parseInt(scanString()); } static long scanLong() throws IOException { return parseLong(scanString()); } static String scanString() throws IOException { while (tok == null || !tok.hasMoreTokens()) { tok = new StringTokenizer(in.readLine()); } return tok.nextToken(); } static BufferedReader in; static PrintWriter out; static StringTokenizer tok; public static void main(String[] args) { try { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); solve(); in.close(); out.close(); } catch (Throwable e) { e.printStackTrace(); exit(1); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 13, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 12, 13, 30, 29, 4, 18, 13, 4, 18, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 4, 18, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 4, 18, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 4, 18, 13, 23, 13, 6, 13, 41, 13, 12, 13, 30, 0, 13, 20, 13, 4, 18, 13, 13, 40, 17, 23, 13, 12, 13, 30, 14, 2, 18, 13, 13, 17, 30, 29, 13, 30, 0, 18, 13, 13, 4, 13, 18, 13, 13, 29, 18, 13, 13, 23, 13, 12, 13, 30, 41, 13, 4, 13, 13, 41, 13, 4, 13, 13, 14, 2, 13, 13, 30, 29, 14, 2, 18, 13, 13, 18, 13, 13, 30, 41, 13, 13, 0, 13, 13, 0, 13, 13, 0, 18, 13, 13, 18, 13, 13, 0, 18, 13, 13, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 189, 8 ], [ 189, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 17, 19 ], [ 11, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 25, 30 ], [ 20, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 34, 36 ], [ 32, 37 ], [ 9, 38 ], [ 38, 39 ], [ 189, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 44, 47 ], [ 47, 48 ], [ 48, 49 ], [ 40, 50 ], [ 50, 51 ], [ 189, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 59, 60 ], [ 60, 61 ], [ 52, 62 ], [ 62, 63 ], [ 189, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 68, 71 ], [ 71, 72 ], [ 72, 73 ], [ 64, 74 ], [ 74, 75 ], [ 189, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 80, 83 ], [ 83, 84 ], [ 84, 85 ], [ 76, 86 ], [ 86, 87 ], [ 0, 88 ], [ 88, 89 ], [ 88, 90 ], [ 90, 91 ], [ 88, 92 ], [ 92, 93 ], [ 92, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 94, 99 ], [ 99, 100 ], [ 100, 101 ], [ 99, 102 ], [ 99, 103 ], [ 103, 104 ], [ 92, 105 ], [ 105, 106 ], [ 88, 107 ], [ 107, 108 ], [ 107, 109 ], [ 109, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 111, 115 ], [ 110, 116 ], [ 116, 117 ], [ 117, 118 ], [ 110, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 120, 124 ], [ 124, 125 ], [ 124, 126 ], [ 126, 127 ], [ 126, 128 ], [ 119, 129 ], [ 129, 130 ], [ 130, 131 ], [ 130, 132 ], [ 107, 133 ], [ 133, 134 ], [ 88, 135 ], [ 135, 136 ], [ 135, 137 ], [ 137, 138 ], [ 138, 139 ], [ 138, 140 ], [ 140, 141 ], [ 140, 142 ], [ 137, 143 ], [ 143, 144 ], [ 143, 145 ], [ 145, 146 ], [ 145, 147 ], [ 137, 148 ], [ 148, 149 ], [ 149, 150 ], [ 149, 151 ], [ 148, 152 ], [ 152, 153 ], [ 137, 154 ], [ 154, 155 ], [ 155, 156 ], [ 156, 157 ], [ 156, 158 ], [ 155, 159 ], [ 159, 160 ], [ 159, 161 ], [ 154, 162 ], [ 162, 163 ], [ 163, 164 ], [ 163, 165 ], [ 162, 166 ], [ 166, 167 ], [ 166, 168 ], [ 162, 169 ], [ 169, 170 ], [ 169, 171 ], [ 137, 172 ], [ 172, 173 ], [ 173, 174 ], [ 173, 175 ], [ 172, 176 ], [ 176, 177 ], [ 176, 178 ], [ 137, 179 ], [ 179, 180 ], [ 180, 181 ], [ 180, 182 ], [ 179, 183 ], [ 135, 184 ], [ 184, 185 ], [ 135, 186 ], [ 186, 187 ], [ 0, 188 ], [ 188, 189 ], [ 188, 190 ] ]
[ "import java.util.Arrays;\nimport java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int x = nextInt(scanner);\n if (x == 0) {\n System.out.println(1);\n }else {\n System.out.println(0);\n }\n }\n\n private static int nextInt(Scanner scanner) {\n return Integer.parseInt(scanner.next());\n }\n\n private static long nextLong(Scanner scanner) {\n return Long.parseLong(scanner.next());\n }\n\n private static float nextFloat(Scanner scanner) {\n return Float.parseFloat(scanner.next());\n }\n\n private static double nextDouble(Scanner scanner) {\n return Double.parseDouble(scanner.next());\n }\n\n\n}\n\n\nclass UnionFind {\n int[] parent;\n\n UnionFind(int n) {\n parent = new int[n];\n Arrays.fill(parent, -1);\n }\n\n int find(int x) {\n if (parent[x] < 0) {\n return x;\n } else {\n parent[x] = find(parent[x]);\n return parent[x];\n }\n }\n\n void unite(int x, int y) {\n int rootX = find(x);\n int rootY = find(y);\n if (rootX == rootY) {\n return;\n }\n\n if (parent[rootX] > parent[rootY]) {\n int temp = rootX;\n rootX = rootY;\n rootY = temp;\n }\n parent[rootX] += parent[rootY];\n parent[rootY] = rootX;\n }\n\n}", "import java.util.Arrays;", "Arrays", "java.util", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int x = nextInt(scanner);\n if (x == 0) {\n System.out.println(1);\n }else {\n System.out.println(0);\n }\n }\n\n private static int nextInt(Scanner scanner) {\n return Integer.parseInt(scanner.next());\n }\n\n private static long nextLong(Scanner scanner) {\n return Long.parseLong(scanner.next());\n }\n\n private static float nextFloat(Scanner scanner) {\n return Float.parseFloat(scanner.next());\n }\n\n private static double nextDouble(Scanner scanner) {\n return Double.parseDouble(scanner.next());\n }\n\n\n}", "Main", "public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int x = nextInt(scanner);\n if (x == 0) {\n System.out.println(1);\n }else {\n System.out.println(0);\n }\n }", "main", "{\n Scanner scanner = new Scanner(System.in);\n int x = nextInt(scanner);\n if (x == 0) {\n System.out.println(1);\n }else {\n System.out.println(0);\n }\n }", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int x = nextInt(scanner);", "x", "nextInt(scanner)", "nextInt", "scanner", "if (x == 0) {\n System.out.println(1);\n }else {\n System.out.println(0);\n }", "x == 0", "x", "0", "{\n System.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "{\n System.out.println(0);\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "private static int nextInt(Scanner scanner) {\n return Integer.parseInt(scanner.next());\n }", "nextInt", "{\n return Integer.parseInt(scanner.next());\n }", "return Integer.parseInt(scanner.next());", "Integer.parseInt(scanner.next())", "Integer.parseInt", "Integer", "scanner.next()", "scanner.next", "scanner", "Scanner scanner", "scanner", "private static long nextLong(Scanner scanner) {\n return Long.parseLong(scanner.next());\n }", "nextLong", "{\n return Long.parseLong(scanner.next());\n }", "return Long.parseLong(scanner.next());", "Long.parseLong(scanner.next())", "Long.parseLong", "Long", "scanner.next()", "scanner.next", "scanner", "Scanner scanner", "scanner", "private static float nextFloat(Scanner scanner) {\n return Float.parseFloat(scanner.next());\n }", "nextFloat", "{\n return Float.parseFloat(scanner.next());\n }", "return Float.parseFloat(scanner.next());", "Float.parseFloat(scanner.next())", "Float.parseFloat", "Float", "scanner.next()", "scanner.next", "scanner", "Scanner scanner", "scanner", "private static double nextDouble(Scanner scanner) {\n return Double.parseDouble(scanner.next());\n }", "nextDouble", "{\n return Double.parseDouble(scanner.next());\n }", "return Double.parseDouble(scanner.next());", "Double.parseDouble(scanner.next())", "Double.parseDouble", "Double", "scanner.next()", "scanner.next", "scanner", "Scanner scanner", "scanner", "class UnionFind {\n int[] parent;\n\n UnionFind(int n) {\n parent = new int[n];\n Arrays.fill(parent, -1);\n }\n\n int find(int x) {\n if (parent[x] < 0) {\n return x;\n } else {\n parent[x] = find(parent[x]);\n return parent[x];\n }\n }\n\n void unite(int x, int y) {\n int rootX = find(x);\n int rootY = find(y);\n if (rootX == rootY) {\n return;\n }\n\n if (parent[rootX] > parent[rootY]) {\n int temp = rootX;\n rootX = rootY;\n rootY = temp;\n }\n parent[rootX] += parent[rootY];\n parent[rootY] = rootX;\n }\n\n}", "UnionFind", "int[] parent;", "parent", "UnionFind(int n) {\n parent = new int[n];\n Arrays.fill(parent, -1);\n }", "UnionFind", "{\n parent = new int[n];\n Arrays.fill(parent, -1);\n }", "parent = new int[n]", "parent", "new int[n]", "n", "Arrays.fill(parent, -1)", "Arrays.fill", "Arrays", "parent", "-1", "1", "int n", "n", "int find(int x) {\n if (parent[x] < 0) {\n return x;\n } else {\n parent[x] = find(parent[x]);\n return parent[x];\n }\n }", "find", "{\n if (parent[x] < 0) {\n return x;\n } else {\n parent[x] = find(parent[x]);\n return parent[x];\n }\n }", "if (parent[x] < 0) {\n return x;\n } else {\n parent[x] = find(parent[x]);\n return parent[x];\n }", "parent[x] < 0", "parent[x]", "parent", "x", "0", "{\n return x;\n }", "return x;", "x", "{\n parent[x] = find(parent[x]);\n return parent[x];\n }", "parent[x] = find(parent[x])", "parent[x]", "parent", "x", "find(parent[x])", "find", "parent[x]", "parent", "x", "return parent[x];", "parent[x]", "parent", "x", "int x", "x", "void unite(int x, int y) {\n int rootX = find(x);\n int rootY = find(y);\n if (rootX == rootY) {\n return;\n }\n\n if (parent[rootX] > parent[rootY]) {\n int temp = rootX;\n rootX = rootY;\n rootY = temp;\n }\n parent[rootX] += parent[rootY];\n parent[rootY] = rootX;\n }", "unite", "{\n int rootX = find(x);\n int rootY = find(y);\n if (rootX == rootY) {\n return;\n }\n\n if (parent[rootX] > parent[rootY]) {\n int temp = rootX;\n rootX = rootY;\n rootY = temp;\n }\n parent[rootX] += parent[rootY];\n parent[rootY] = rootX;\n }", "int rootX = find(x);", "rootX", "find(x)", "find", "x", "int rootY = find(y);", "rootY", "find(y)", "find", "y", "if (rootX == rootY) {\n return;\n }", "rootX == rootY", "rootX", "rootY", "{\n return;\n }", "return;", "if (parent[rootX] > parent[rootY]) {\n int temp = rootX;\n rootX = rootY;\n rootY = temp;\n }", "parent[rootX] > parent[rootY]", "parent[rootX]", "parent", "rootX", "parent[rootY]", "parent", "rootY", "{\n int temp = rootX;\n rootX = rootY;\n rootY = temp;\n }", "int temp = rootX;", "temp", "rootX", "rootX = rootY", "rootX", "rootY", "rootY = temp", "rootY", "temp", "parent[rootX] += parent[rootY]", "parent[rootX]", "parent", "rootX", "parent[rootY]", "parent", "rootY", "parent[rootY] = rootX", "parent[rootY]", "parent", "rootY", "rootX", "int x", "x", "int y", "y", "public class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int x = nextInt(scanner);\n if (x == 0) {\n System.out.println(1);\n }else {\n System.out.println(0);\n }\n }\n\n private static int nextInt(Scanner scanner) {\n return Integer.parseInt(scanner.next());\n }\n\n private static long nextLong(Scanner scanner) {\n return Long.parseLong(scanner.next());\n }\n\n private static float nextFloat(Scanner scanner) {\n return Float.parseFloat(scanner.next());\n }\n\n private static double nextDouble(Scanner scanner) {\n return Double.parseDouble(scanner.next());\n }\n\n\n}", "public class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int x = nextInt(scanner);\n if (x == 0) {\n System.out.println(1);\n }else {\n System.out.println(0);\n }\n }\n\n private static int nextInt(Scanner scanner) {\n return Integer.parseInt(scanner.next());\n }\n\n private static long nextLong(Scanner scanner) {\n return Long.parseLong(scanner.next());\n }\n\n private static float nextFloat(Scanner scanner) {\n return Float.parseFloat(scanner.next());\n }\n\n private static double nextDouble(Scanner scanner) {\n return Double.parseDouble(scanner.next());\n }\n\n\n}", "Main" ]
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int x = nextInt(scanner); if (x == 0) { System.out.println(1); }else { System.out.println(0); } } private static int nextInt(Scanner scanner) { return Integer.parseInt(scanner.next()); } private static long nextLong(Scanner scanner) { return Long.parseLong(scanner.next()); } private static float nextFloat(Scanner scanner) { return Float.parseFloat(scanner.next()); } private static double nextDouble(Scanner scanner) { return Double.parseDouble(scanner.next()); } } class UnionFind { int[] parent; UnionFind(int n) { parent = new int[n]; Arrays.fill(parent, -1); } int find(int x) { if (parent[x] < 0) { return x; } else { parent[x] = find(parent[x]); return parent[x]; } } void unite(int x, int y) { int rootX = find(x); int rootY = find(y); if (rootX == rootY) { return; } if (parent[rootX] > parent[rootY]) { int temp = rootX; rootX = rootY; rootY = temp; } parent[rootX] += parent[rootY]; parent[rootY] = rootX; } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 17, 41, 13, 20, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 13, 17, 30, 4, 18, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13, 6, 13, 41, 13, 20, 17, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 18, 13, 13, 12, 13, 30, 14, 2, 13, 17, 37, 20, 14, 2, 13, 13, 30, 0, 13, 17, 0, 13, 4, 18, 13, 13, 14, 2, 13, 17, 29, 40, 17, 29, 18, 13, 40, 13, 12, 13, 30, 41, 13, 17, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 40, 17, 0, 13, 4, 13, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 30, 0, 13, 17, 0, 13, 2, 13, 17, 0, 13, 4, 13, 37, 20, 29, 2, 13, 13, 12, 13, 30, 41, 13, 17, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 40, 17, 0, 13, 4, 13, 42, 2, 40, 4, 13, 13, 2, 13, 17, 30, 14, 2, 2, 13, 17, 2, 13, 17, 30, 0, 13, 17, 0, 13, 2, 13, 17, 0, 13, 4, 13, 37, 20, 14, 2, 13, 17, 30, 0, 13, 4, 13, 41, 13, 17, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 30, 0, 13, 17, 0, 13, 2, 2, 13, 17, 13, 0, 13, 4, 13, 37, 20, 29, 2, 13, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 42, 40, 4, 13, 13, 30, 4, 18, 13, 13, 0, 13, 4, 13, 29, 4, 18, 13, 12, 13, 30, 14, 2, 2, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 29, 17, 29, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 364, 8 ], [ 364, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 11, 18 ], [ 18, 19 ], [ 18, 20 ], [ 11, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 21, 26 ], [ 26, 27 ], [ 26, 28 ], [ 21, 29 ], [ 29, 30 ], [ 30, 31 ], [ 21, 32 ], [ 33, 33 ], [ 33, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 33, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 39, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 44, 47 ], [ 39, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 49, 52 ], [ 11, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 53, 58 ], [ 9, 59 ], [ 59, 60 ], [ 364, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 63, 65 ], [ 61, 67 ], [ 67, 68 ], [ 61, 69 ], [ 69, 70 ], [ 61, 71 ], [ 71, 72 ], [ 61, 73 ], [ 73, 74 ], [ 73, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 78, 80 ], [ 61, 81 ], [ 81, 82 ], [ 81, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 84, 88 ], [ 88, 89 ], [ 83, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 90, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 94, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 101, 102 ], [ 100, 103 ], [ 94, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 104, 108 ], [ 108, 109 ], [ 109, 110 ], [ 83, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 114, 115 ], [ 61, 116 ], [ 116, 117 ], [ 116, 118 ], [ 118, 119 ], [ 119, 120 ], [ 119, 121 ], [ 118, 122 ], [ 122, 123 ], [ 122, 124 ], [ 124, 125 ], [ 118, 126 ], [ 126, 127 ], [ 127, 128 ], [ 127, 129 ], [ 126, 130 ], [ 130, 131 ], [ 130, 132 ], [ 132, 133 ], [ 118, 134 ], [ 134, 135 ], [ 134, 136 ], [ 118, 137 ], [ 137, 138 ], [ 138, 139 ], [ 138, 140 ], [ 137, 141 ], [ 141, 142 ], [ 142, 143 ], [ 142, 144 ], [ 144, 145 ], [ 141, 146 ], [ 146, 147 ], [ 146, 148 ], [ 148, 149 ], [ 118, 150 ], [ 150, 151 ], [ 151, 152 ], [ 152, 153 ], [ 152, 154 ], [ 150, 155 ], [ 155, 156 ], [ 156, 157 ], [ 157, 158 ], [ 158, 159 ], [ 158, 160 ], [ 157, 161 ], [ 161, 162 ], [ 161, 163 ], [ 156, 164 ], [ 164, 165 ], [ 165, 166 ], [ 165, 167 ], [ 164, 168 ], [ 168, 169 ], [ 168, 170 ], [ 170, 171 ], [ 170, 172 ], [ 164, 173 ], [ 173, 174 ], [ 173, 175 ], [ 175, 176 ], [ 156, 177 ], [ 177, 178 ], [ 118, 179 ], [ 179, 180 ], [ 180, 181 ], [ 180, 182 ], [ 61, 183 ], [ 183, 184 ], [ 183, 185 ], [ 185, 186 ], [ 186, 187 ], [ 186, 188 ], [ 185, 189 ], [ 189, 190 ], [ 189, 191 ], [ 191, 192 ], [ 185, 193 ], [ 193, 194 ], [ 194, 195 ], [ 194, 196 ], [ 193, 197 ], [ 197, 198 ], [ 197, 199 ], [ 199, 200 ], [ 185, 201 ], [ 201, 202 ], [ 201, 203 ], [ 185, 204 ], [ 204, 205 ], [ 205, 206 ], [ 205, 207 ], [ 204, 208 ], [ 208, 209 ], [ 209, 210 ], [ 209, 211 ], [ 211, 212 ], [ 208, 213 ], [ 213, 214 ], [ 213, 215 ], [ 215, 216 ], [ 185, 217 ], [ 217, 218 ], [ 218, 219 ], [ 219, 220 ], [ 220, 221 ], [ 220, 222 ], [ 218, 223 ], [ 223, 224 ], [ 223, 225 ], [ 217, 226 ], [ 226, 227 ], [ 227, 228 ], [ 228, 229 ], [ 229, 230 ], [ 229, 231 ], [ 228, 232 ], [ 232, 233 ], [ 232, 234 ], [ 227, 235 ], [ 235, 236 ], [ 236, 237 ], [ 236, 238 ], [ 235, 239 ], [ 239, 240 ], [ 239, 241 ], [ 241, 242 ], [ 241, 243 ], [ 235, 244 ], [ 244, 245 ], [ 244, 246 ], [ 246, 247 ], [ 227, 248 ], [ 248, 249 ], [ 185, 250 ], [ 250, 251 ], [ 251, 252 ], [ 251, 253 ], [ 250, 254 ], [ 254, 255 ], [ 255, 256 ], [ 255, 257 ], [ 257, 258 ], [ 254, 259 ], [ 259, 260 ], [ 259, 261 ], [ 254, 262 ], [ 262, 263 ], [ 263, 264 ], [ 264, 265 ], [ 264, 266 ], [ 262, 267 ], [ 267, 268 ], [ 268, 269 ], [ 269, 270 ], [ 270, 271 ], [ 270, 272 ], [ 269, 273 ], [ 273, 274 ], [ 273, 275 ], [ 268, 276 ], [ 276, 277 ], [ 277, 278 ], [ 277, 279 ], [ 276, 280 ], [ 280, 281 ], [ 280, 282 ], [ 282, 283 ], [ 283, 284 ], [ 283, 285 ], [ 282, 286 ], [ 276, 287 ], [ 287, 288 ], [ 287, 289 ], [ 289, 290 ], [ 268, 291 ], [ 291, 292 ], [ 185, 293 ], [ 293, 294 ], [ 294, 295 ], [ 294, 296 ], [ 61, 297 ], [ 297, 298 ], [ 297, 299 ], [ 299, 300 ], [ 300, 301 ], [ 300, 302 ], [ 299, 303 ], [ 303, 304 ], [ 303, 305 ], [ 305, 306 ], [ 299, 307 ], [ 307, 308 ], [ 308, 309 ], [ 308, 310 ], [ 307, 311 ], [ 311, 312 ], [ 311, 313 ], [ 313, 314 ], [ 299, 315 ], [ 315, 316 ], [ 316, 317 ], [ 317, 318 ], [ 317, 319 ], [ 315, 320 ], [ 320, 321 ], [ 321, 322 ], [ 322, 323 ], [ 321, 324 ], [ 320, 325 ], [ 325, 326 ], [ 325, 327 ], [ 327, 328 ], [ 299, 329 ], [ 329, 330 ], [ 330, 331 ], [ 331, 332 ], [ 61, 333 ], [ 333, 334 ], [ 333, 335 ], [ 335, 336 ], [ 336, 337 ], [ 340, 338 ], [ 350, 339 ], [ 347, 340 ], [ 340, 341 ], [ 341, 342 ], [ 341, 343 ], [ 340, 344 ], [ 344, 345 ], [ 344, 346 ], [ 347, 347 ], [ 347, 348 ], [ 347, 349 ], [ 350, 350 ], [ 350, 351 ], [ 350, 352 ], [ 340, 353 ], [ 353, 354 ], [ 353, 355 ], [ 355, 356 ], [ 336, 357 ], [ 357, 358 ], [ 335, 359 ], [ 359, 360 ], [ 333, 361 ], [ 361, 362 ], [ 0, 363 ], [ 363, 364 ], [ 363, 365 ] ]
[ "import java.util.*;\nimport java.io.*;\npublic class Main {\n static class Scan {\n private byte[] buf=new byte[1024];\n private int index;\n private InputStream in;\n private int total;\n public Scan()\n {\n in=System.in;\n }\n public int scan()throws IOException\n {\n if(total<0)\n throw new InputMismatchException();\n if(index>=total)\n {\n index=0;\n total=in.read(buf);\n if(total<=0)\n return -1;\n }\n return buf[index++];\n }\n public int scanInt()throws IOException\n {\n int integer=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n return neg*integer;\n }\n public double scanDouble()throws IOException\n {\n double doub=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n)&&n!='.')\n {\n if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n if(n=='.')\n {\n n=scan();\n double temp=1;\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }\n }\n return doub*neg;\n }\n public String scanString()throws IOException\n {\n StringBuilder sb=new StringBuilder();\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n while(!isWhiteSpace(n))\n {\n sb.append((char)n);\n n=scan();\n }\n return sb.toString();\n }\n private boolean isWhiteSpace(int n)\n {\n if(n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1)\n return true;\n return false;\n }\n }\n public static void main(String args[]) throws IOException {\n Scan input=new Scan();\n int test=1;\n// test=input.scanInt();\n StringBuilder ans=new StringBuilder(\"\");\n for(int tt=1;tt<=test;tt++) {\n int x=input.scanInt();\n if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }\n }\n System.out.println(ans);\n }\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "public class Main {\n static class Scan {\n private byte[] buf=new byte[1024];\n private int index;\n private InputStream in;\n private int total;\n public Scan()\n {\n in=System.in;\n }\n public int scan()throws IOException\n {\n if(total<0)\n throw new InputMismatchException();\n if(index>=total)\n {\n index=0;\n total=in.read(buf);\n if(total<=0)\n return -1;\n }\n return buf[index++];\n }\n public int scanInt()throws IOException\n {\n int integer=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n return neg*integer;\n }\n public double scanDouble()throws IOException\n {\n double doub=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n)&&n!='.')\n {\n if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n if(n=='.')\n {\n n=scan();\n double temp=1;\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }\n }\n return doub*neg;\n }\n public String scanString()throws IOException\n {\n StringBuilder sb=new StringBuilder();\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n while(!isWhiteSpace(n))\n {\n sb.append((char)n);\n n=scan();\n }\n return sb.toString();\n }\n private boolean isWhiteSpace(int n)\n {\n if(n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1)\n return true;\n return false;\n }\n }\n public static void main(String args[]) throws IOException {\n Scan input=new Scan();\n int test=1;\n// test=input.scanInt();\n StringBuilder ans=new StringBuilder(\"\");\n for(int tt=1;tt<=test;tt++) {\n int x=input.scanInt();\n if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }\n }\n System.out.println(ans);\n }\n}", "Main", "public static void main(String args[]) throws IOException {\n Scan input=new Scan();\n int test=1;\n// test=input.scanInt();\n StringBuilder ans=new StringBuilder(\"\");\n for(int tt=1;tt<=test;tt++) {\n int x=input.scanInt();\n if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }\n }\n System.out.println(ans);\n }", "main", "{\n Scan input=new Scan();\n int test=1;\n// test=input.scanInt();\n StringBuilder ans=new StringBuilder(\"\");\n for(int tt=1;tt<=test;tt++) {\n int x=input.scanInt();\n if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }\n }\n System.out.println(ans);\n }", "Scan input=new Scan();", "input", "new Scan()", "int test=1;", "test", "1", "StringBuilder ans=new StringBuilder(\"\");", "ans", "new StringBuilder(\"\")", "for(int tt=1;tt<=test;tt++) {\n int x=input.scanInt();\n if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }\n }", "int tt=1;", "int tt=1;", "tt", "1", "tt<=test", "tt", "test", "tt++", "tt++", "tt", "{\n int x=input.scanInt();\n if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }\n }", "{\n int x=input.scanInt();\n if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }\n }", "int x=input.scanInt();", "x", "input.scanInt()", "input.scanInt", "input", "if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }", "x==0", "x", "0", "{\n ans.append(1);\n }", "ans.append(1)", "ans.append", "ans", "1", "{\n ans.append(0);\n }", "ans.append(0)", "ans.append", "ans", "0", "System.out.println(ans)", "System.out.println", "System.out", "System", "System.out", "ans", "String args[]", "args", "static class Scan {\n private byte[] buf=new byte[1024];\n private int index;\n private InputStream in;\n private int total;\n public Scan()\n {\n in=System.in;\n }\n public int scan()throws IOException\n {\n if(total<0)\n throw new InputMismatchException();\n if(index>=total)\n {\n index=0;\n total=in.read(buf);\n if(total<=0)\n return -1;\n }\n return buf[index++];\n }\n public int scanInt()throws IOException\n {\n int integer=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n return neg*integer;\n }\n public double scanDouble()throws IOException\n {\n double doub=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n)&&n!='.')\n {\n if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n if(n=='.')\n {\n n=scan();\n double temp=1;\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }\n }\n return doub*neg;\n }\n public String scanString()throws IOException\n {\n StringBuilder sb=new StringBuilder();\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n while(!isWhiteSpace(n))\n {\n sb.append((char)n);\n n=scan();\n }\n return sb.toString();\n }\n private boolean isWhiteSpace(int n)\n {\n if(n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1)\n return true;\n return false;\n }\n }", "Scan", "private byte[] buf=new byte[1024];", "buf", "new byte[1024]", "1024", "private int index;", "index", "private InputStream in;", "in", "private int total;", "total", "public Scan()\n {\n in=System.in;\n }", "Scan", "{\n in=System.in;\n }", "in=System.in", "in", "System.in", "System", "System.in", "public int scan()throws IOException\n {\n if(total<0)\n throw new InputMismatchException();\n if(index>=total)\n {\n index=0;\n total=in.read(buf);\n if(total<=0)\n return -1;\n }\n return buf[index++];\n }", "scan", "{\n if(total<0)\n throw new InputMismatchException();\n if(index>=total)\n {\n index=0;\n total=in.read(buf);\n if(total<=0)\n return -1;\n }\n return buf[index++];\n }", "if(total<0)\n throw new InputMismatchException();", "total<0", "total", "0", "throw new InputMismatchException();", "new InputMismatchException()", "if(index>=total)\n {\n index=0;\n total=in.read(buf);\n if(total<=0)\n return -1;\n }", "index>=total", "index", "total", "{\n index=0;\n total=in.read(buf);\n if(total<=0)\n return -1;\n }", "index=0", "index", "0", "total=in.read(buf)", "total", "in.read(buf)", "in.read", "in", "buf", "if(total<=0)\n return -1;", "total<=0", "total", "0", "return -1;", "-1", "1", "return buf[index++];", "buf[index++]", "buf", "index++", "index", "public int scanInt()throws IOException\n {\n int integer=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n return neg*integer;\n }", "scanInt", "{\n int integer=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n return neg*integer;\n }", "int integer=0;", "integer", "0", "int n=scan();", "n", "scan()", "scan", "while(isWhiteSpace(n))\n n=scan();", "isWhiteSpace(n)", "isWhiteSpace", "n", "n=scan()", "n", "scan()", "scan", "int neg=1;", "neg", "1", "if(n=='-')\n {\n neg=-1;\n n=scan();\n }", "n=='-'", "n", "'-'", "{\n neg=-1;\n n=scan();\n }", "neg=-1", "neg", "-1", "1", "n=scan()", "n", "scan()", "scan", "while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }", "!isWhiteSpace(n)", "isWhiteSpace(n)", "isWhiteSpace", "n", "{\n if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }", "if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();", "n>='0'&&n<='9'", "n>='0'", "n", "'0'", "n<='9'", "n", "'9'", "{\n integer*=10;\n integer+=n-'0';\n n=scan();\n }", "integer*=10", "integer", "10", "integer+=n-'0'", "integer", "n-'0'", "n", "'0'", "n=scan()", "n", "scan()", "scan", "throw new InputMismatchException();", "new InputMismatchException()", "return neg*integer;", "neg*integer", "neg", "integer", "public double scanDouble()throws IOException\n {\n double doub=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n)&&n!='.')\n {\n if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n if(n=='.')\n {\n n=scan();\n double temp=1;\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }\n }\n return doub*neg;\n }", "scanDouble", "{\n double doub=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n)&&n!='.')\n {\n if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n if(n=='.')\n {\n n=scan();\n double temp=1;\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }\n }\n return doub*neg;\n }", "double doub=0;", "doub", "0", "int n=scan();", "n", "scan()", "scan", "while(isWhiteSpace(n))\n n=scan();", "isWhiteSpace(n)", "isWhiteSpace", "n", "n=scan()", "n", "scan()", "scan", "int neg=1;", "neg", "1", "if(n=='-')\n {\n neg=-1;\n n=scan();\n }", "n=='-'", "n", "'-'", "{\n neg=-1;\n n=scan();\n }", "neg=-1", "neg", "-1", "1", "n=scan()", "n", "scan()", "scan", "while(!isWhiteSpace(n)&&n!='.')\n {\n if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }", "!isWhiteSpace(n)&&n!='.'", "!isWhiteSpace(n)", "isWhiteSpace(n)", "isWhiteSpace", "n", "n!='.'", "n", "'.'", "{\n if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }", "if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();", "n>='0'&&n<='9'", "n>='0'", "n", "'0'", "n<='9'", "n", "'9'", "{\n doub*=10;\n doub+=n-'0';\n n=scan();\n }", "doub*=10", "doub", "10", "doub+=n-'0'", "doub", "n-'0'", "n", "'0'", "n=scan()", "n", "scan()", "scan", "throw new InputMismatchException();", "new InputMismatchException()", "if(n=='.')\n {\n n=scan();\n double temp=1;\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }\n }", "n=='.'", "n", "'.'", "{\n n=scan();\n double temp=1;\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }\n }", "n=scan()", "n", "scan()", "scan", "double temp=1;", "temp", "1", "while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }", "!isWhiteSpace(n)", "isWhiteSpace(n)", "isWhiteSpace", "n", "{\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }", "if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();", "n>='0'&&n<='9'", "n>='0'", "n", "'0'", "n<='9'", "n", "'9'", "{\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }", "temp/=10", "temp", "10", "doub+=(n-'0')*temp", "doub", "(n-'0')*temp", "(n-'0')", "n", "'0'", "temp", "n=scan()", "n", "scan()", "scan", "throw new InputMismatchException();", "new InputMismatchException()", "return doub*neg;", "doub*neg", "doub", "neg", "public String scanString()throws IOException\n {\n StringBuilder sb=new StringBuilder();\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n while(!isWhiteSpace(n))\n {\n sb.append((char)n);\n n=scan();\n }\n return sb.toString();\n }", "scanString", "{\n StringBuilder sb=new StringBuilder();\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n while(!isWhiteSpace(n))\n {\n sb.append((char)n);\n n=scan();\n }\n return sb.toString();\n }", "StringBuilder sb=new StringBuilder();", "sb", "new StringBuilder()", "int n=scan();", "n", "scan()", "scan", "while(isWhiteSpace(n))\n n=scan();", "isWhiteSpace(n)", "isWhiteSpace", "n", "n=scan()", "n", "scan()", "scan", "while(!isWhiteSpace(n))\n {\n sb.append((char)n);\n n=scan();\n }", "!isWhiteSpace(n)", "isWhiteSpace(n)", "isWhiteSpace", "n", "{\n sb.append((char)n);\n n=scan();\n }", "sb.append((char)n)", "sb.append", "sb", "(char)n", "n=scan()", "n", "scan()", "scan", "return sb.toString();", "sb.toString()", "sb.toString", "sb", "private boolean isWhiteSpace(int n)\n {\n if(n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1)\n return true;\n return false;\n }", "isWhiteSpace", "{\n if(n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1)\n return true;\n return false;\n }", "if(n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1)\n return true;", "n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1", "n=='\\t'", "n=='\\r'", "n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1", "n==' '", "n", "' '", "n=='\\n'", "n", "'\\n'", "n=='\\r'", "n", "'\\r'", "n=='\\t'", "n", "'\\t'", "n==-1", "n", "-1", "1", "return true;", "true", "return false;", "false", "int n", "n", "public class Main {\n static class Scan {\n private byte[] buf=new byte[1024];\n private int index;\n private InputStream in;\n private int total;\n public Scan()\n {\n in=System.in;\n }\n public int scan()throws IOException\n {\n if(total<0)\n throw new InputMismatchException();\n if(index>=total)\n {\n index=0;\n total=in.read(buf);\n if(total<=0)\n return -1;\n }\n return buf[index++];\n }\n public int scanInt()throws IOException\n {\n int integer=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n return neg*integer;\n }\n public double scanDouble()throws IOException\n {\n double doub=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n)&&n!='.')\n {\n if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n if(n=='.')\n {\n n=scan();\n double temp=1;\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }\n }\n return doub*neg;\n }\n public String scanString()throws IOException\n {\n StringBuilder sb=new StringBuilder();\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n while(!isWhiteSpace(n))\n {\n sb.append((char)n);\n n=scan();\n }\n return sb.toString();\n }\n private boolean isWhiteSpace(int n)\n {\n if(n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1)\n return true;\n return false;\n }\n }\n public static void main(String args[]) throws IOException {\n Scan input=new Scan();\n int test=1;\n// test=input.scanInt();\n StringBuilder ans=new StringBuilder(\"\");\n for(int tt=1;tt<=test;tt++) {\n int x=input.scanInt();\n if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }\n }\n System.out.println(ans);\n }\n}", "public class Main {\n static class Scan {\n private byte[] buf=new byte[1024];\n private int index;\n private InputStream in;\n private int total;\n public Scan()\n {\n in=System.in;\n }\n public int scan()throws IOException\n {\n if(total<0)\n throw new InputMismatchException();\n if(index>=total)\n {\n index=0;\n total=in.read(buf);\n if(total<=0)\n return -1;\n }\n return buf[index++];\n }\n public int scanInt()throws IOException\n {\n int integer=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n integer*=10;\n integer+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n return neg*integer;\n }\n public double scanDouble()throws IOException\n {\n double doub=0;\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n int neg=1;\n if(n=='-')\n {\n neg=-1;\n n=scan();\n }\n while(!isWhiteSpace(n)&&n!='.')\n {\n if(n>='0'&&n<='9')\n {\n doub*=10;\n doub+=n-'0';\n n=scan();\n }\n else throw new InputMismatchException();\n }\n if(n=='.')\n {\n n=scan();\n double temp=1;\n while(!isWhiteSpace(n))\n {\n if(n>='0'&&n<='9')\n {\n temp/=10;\n doub+=(n-'0')*temp;\n n=scan();\n }\n else throw new InputMismatchException();\n }\n }\n return doub*neg;\n }\n public String scanString()throws IOException\n {\n StringBuilder sb=new StringBuilder();\n int n=scan();\n while(isWhiteSpace(n))\n n=scan();\n while(!isWhiteSpace(n))\n {\n sb.append((char)n);\n n=scan();\n }\n return sb.toString();\n }\n private boolean isWhiteSpace(int n)\n {\n if(n==' '||n=='\\n'||n=='\\r'||n=='\\t'||n==-1)\n return true;\n return false;\n }\n }\n public static void main(String args[]) throws IOException {\n Scan input=new Scan();\n int test=1;\n// test=input.scanInt();\n StringBuilder ans=new StringBuilder(\"\");\n for(int tt=1;tt<=test;tt++) {\n int x=input.scanInt();\n if(x==0) {\n ans.append(1);\n }\n else {\n ans.append(0);\n }\n }\n System.out.println(ans);\n }\n}", "Main" ]
import java.util.*; import java.io.*; public class Main { static class Scan { private byte[] buf=new byte[1024]; private int index; private InputStream in; private int total; public Scan() { in=System.in; } public int scan()throws IOException { if(total<0) throw new InputMismatchException(); if(index>=total) { index=0; total=in.read(buf); if(total<=0) return -1; } return buf[index++]; } public int scanInt()throws IOException { int integer=0; int n=scan(); while(isWhiteSpace(n)) n=scan(); int neg=1; if(n=='-') { neg=-1; n=scan(); } while(!isWhiteSpace(n)) { if(n>='0'&&n<='9') { integer*=10; integer+=n-'0'; n=scan(); } else throw new InputMismatchException(); } return neg*integer; } public double scanDouble()throws IOException { double doub=0; int n=scan(); while(isWhiteSpace(n)) n=scan(); int neg=1; if(n=='-') { neg=-1; n=scan(); } while(!isWhiteSpace(n)&&n!='.') { if(n>='0'&&n<='9') { doub*=10; doub+=n-'0'; n=scan(); } else throw new InputMismatchException(); } if(n=='.') { n=scan(); double temp=1; while(!isWhiteSpace(n)) { if(n>='0'&&n<='9') { temp/=10; doub+=(n-'0')*temp; n=scan(); } else throw new InputMismatchException(); } } return doub*neg; } public String scanString()throws IOException { StringBuilder sb=new StringBuilder(); int n=scan(); while(isWhiteSpace(n)) n=scan(); while(!isWhiteSpace(n)) { sb.append((char)n); n=scan(); } return sb.toString(); } private boolean isWhiteSpace(int n) { if(n==' '||n=='\n'||n=='\r'||n=='\t'||n==-1) return true; return false; } } public static void main(String args[]) throws IOException { Scan input=new Scan(); int test=1; // test=input.scanInt(); StringBuilder ans=new StringBuilder(""); for(int tt=1;tt<=test;tt++) { int x=input.scanInt(); if(x==0) { ans.append(1); } else { ans.append(0); } } System.out.println(ans); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 41, 13, 20, 12, 13, 30, 41, 13, 20, 4, 18, 13, 4, 18, 13, 23, 13, 12, 13, 30, 41, 13, 4, 18, 13, 4, 18, 13, 8, 2, 13, 17, 17, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 50, 11 ], [ 50, 12 ], [ 12, 13 ], [ 12, 14 ], [ 50, 15 ], [ 15, 16 ], [ 15, 17 ], [ 50, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 25, 26 ], [ 20, 27 ], [ 27, 28 ], [ 28, 29 ], [ 18, 30 ], [ 30, 31 ], [ 50, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 34, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 43, 47 ], [ 43, 48 ], [ 0, 49 ], [ 49, 50 ], [ 49, 51 ] ]
[ "//No sorceries shall prevail.\nimport java.util.*;\nimport java.io.*;\nimport java.lang.reflect.Array;\npublic class Main {\n\n\tstatic Scanner inp= new Scanner(System.in);\n\tstatic PrintWriter out= new PrintWriter(System.out);\n\tpublic static void main(String args[]) {\t\t \t\n\t \t\n\t\tMain g=new Main();\n\t\tg.main();\n\t\tout.close();\n\t\t\n\t}\n\t\n\t\n\t\n\tvoid main() {\n\t\t\n\t\tint x=inp.nextInt();\n\t\tout.println(x==1?0:1);\n\t\t\n\t}\n\t\n\t\n\t\n\t\n\t/*********************************************************************************************************************************************************************************************************\n\t * ti;. .:,:i: :,;;itt;. fDDEDDEEEEEEKEEEEEKEEEEEEEEEEEEEEEEE###WKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWW#WWWWWKKKKKEE :,:. f::::. .,ijLGDDDDDDDEEEEEEE*\n\t *ti;. .:,:i: .:,;itt;: GLDEEGEEEEEEEEEEEEEEEEEEDEEEEEEEEEEE#W#WEKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKKKKKKG. .::. f:,...,ijLGDDDDDDDDEEEEEE *\n\t *ti;. .:,:i: :,;;iti, :fDDEEEEEEEEEEEEEEEKEEEEDEEEEEEEEEEEW##WEEEKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWWKKKKKKEG .::. .f,::,ijLGDDDDDDDDEEEEEE *\n\t *ti;. .:,:i: .,,;iti;. LDDEEEEEEEEEEKEEEEWEEEDDEEEEEEEEEEE#WWWEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWKKKKKEDj .::. .:L;;ijfGDDDDDDDDDEEEEE *\n\t *ti;. .:,:i: .:,;;iii:LLDEEEEEEEEEEEKEEEEEEEEDEEEEEEEEEEEW#WWEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWKWWWWWWWWWWWWWWKKKKKKKEL .::. .:;LijLGGDDDDDDDDEEEEE *\n\t *ti;. .:,:;: :,;;ittfDEEEEEEEEEEEEEEEEKEEEGEEEEEEEEEEEKWWWEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWKKKKKKKELj .::. :,;jffGGDDDDDDDDDEEEE *\n\t *ti;. .:,:i: .,;;tGGDEEEEEEEEEEEKEEEKEEEDEEEEEEEEEEEEWWWEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWKWWWWWWKKKKKKKEEL .::. .:;itDGGDDDDDDDDDEEEE *\n\t *ti;. .:::;: :;ifDEEEEEEEEEEEEKEEEKEEEEEEEEEEEEEEEWWWEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WWWKKKKKKKKEEf .::. :,itfGEDDDDDDDDDDDEE *\n\t *ti;. .:::;: :GGEEEEEEEEEEEKEKEEKEEEEEEEEEEEEEEEEWWEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKKEEDG .::. .,;jfLGKDLDDDDDDEEDD *\n\t *ti;. .:::;: fDEEEEEEKKKKKKKKKEKEEEEEEEEEEEEEEE#WEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#KKKKKKKKKKEEf .:::. .,;tfLGDEDDDDDDDDEEE *\n\t *ti;. :::;: fDEEEEEEKKKKKKKKKKWKEEEEEEEEEEEEEEEWKEEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKKKEEft :::. .,;tfLGDDDKDDDDDDDDD *\n\t *ti;. .::;: fDEEEEEEKKKKKKKWKKKKKEEEEEEEEEEEEE#WEEWEEEEEDEEDEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKEEGG :,:. .,;tfLGGDDDKDDDDDDDD *\n\t *ti;. .:.;: tGDEEEEKKKKKKKKKKKKKKKKKEEEEEEEEEEEWEEKWEEEEEEEDEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKKKKKEEDf :::. .,;tfLGGDDDDEDDDDDDD *\n\t *ti;. .::;: fDEEEEEKKKKKKKKKKKWKKKKKKKKEEEEEEEWWEEWEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKEEEft.::. .,;tfLGGDDDDDDEDDDDD *\n\t *ti;. .:.;: tGDEEEKKKKKKKKKKKKKKKKKKKKKKEKEEEEE#EEWWEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKEEEGD:::. .,;tfLGGDDDDDDDEDDDD *\n\t *ti;. .:.,. LDEEEEKKKKKKKKKKWKWKKKKKKKKKKKKEEEKWEKW#EEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKW##KKKKKKEEEEf,,:. .,;tfLGGDDDDDDDDEDDD *\n\t *ti;. ..:.,. LGDEEEEKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEEW#WEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKK##KKKKKEEEEEfi;,. .,;tfLGGDDDDDDDDDKDD *\n\t *tt;. .:.,: jDEEEEKKKKKKKKKKWWKKKKKKKKKKKKKKKKKWKE#WWEEEEEEEEEEEEEEWEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKWWKKKKEEEEDfG;,: .,;tfLGGDDDDDDDDDDKD *\n\t *tii,. .:.,. tGDEEEEKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKKWWWKEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKW#KKKKEEEEDGGi;,. .,;tfLGGDDDDDDDDDDDE *\n\t *ti;;,:. .:.,: fDEEEEKKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEK#WWKEEEEEEEEEEEEDEEEEEEEEEEEEEEGEEEEEEEEEEEEEEEEEEEKKKKKKKWWKKEEEEEEDDf;;;,. .,;tfLGGDDDDDDDDDDDD *\n\t *tii;,,:.. ...,. ;LEEEEEKKKKKKWKKKKWKKKKKKKKKKKKKKKKKEKKW#WEEEEEEEEEEEEEjEEEEEEEEEKEEEEGEEEEEEEEEKEEEEEEEEEEEEEEEEE#WKEEEEEEDDf;;;;,: .,itfLGGDDDDDDDDDDDD *\n\t *ti;,,,,,:. ...,. LDEEEEKKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKK#W#WEEEEEEEEEEEDDLEEEEEEEEEWEEEEDEEEEEEEEEKEEEEEEEEEEEEEEEEEWWEEEEEEEDDfj,,,,,:. .,itfGGGDDDDDDDDDDDD *\n\t *tii,,,,::::. ...,: .fDEEEEKKKKKKWKKKKWWWKKKKKKKKKKKKKKKEKKW#WWEEEEEEEEEEEKiKEEKEEEEEEWEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEEWWEEEEEEEDDLD:::,,,:. .,ijfGGGDDDDDDDDDDDD *\n\t *ti;:::::::::.. .:.,: LDEEEEKKKKKKKWKKKKWWKKKKKKKKKKKKKKKKtKKWWWWKEEEEEEEEEDiiDEEEEEEEEWWEEEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEWKEEEEEDDDGL:. .:,,,: .,ijLGGGDDDDDDDDDDDD *\n\t *tt;. .::::::::.. ...,: :fDEEEKKKKKKKKKKKKWW#KKKKKKKKKKKKKKKKfKKWWWWKEEEEEEEEDti,DEKEEEEEEWWEEEDEEEEEEEEEKEEEEEEEEEEEEEDEEEEE#WEEEEEGGDGf:. .:,;,:. .,ijLGGDDDDDDDDDDDDD *\n\t *tt;. .:::::::.. ...,: GDEEEKKKKKKKKWKKKKWWWKKKWKKKKKKKWWWKDEKLWWWWKKEEEEEEDEi,LDEEEEEEEEWWEEEEEEEEEEEEEEEEEEEEEEEEEDEDEEEEEW#EEEEDDDDGf,. :,,,:...,ijLGGGDDDDDDDDDDDD *\n\t *tt;. .....::::.. ...,: fDEEEKKKKKKKKWKKKKWWWWKKKWKKKKKKKKKKfWKiWWW#KKEEEEEEEi;.EDfEEEDEEiWWEEEEEEEEEEEEDGKEEEEEEEEEEDEEEEEEEWWEEEEDDDGGLi. .,;,:::,ijLGGGDDDDDDDDDDDD *\n\t *tt;. ....:::::. ...,. iDEEEEKKKKKKKKWKKWKWWWWWKKWWWKKKKKKKKtWKt#WWWKKEEEEEDji..DDKDDEDEGiWKEEEEEEEEEEDDEjEEEEEEEEEEEDEEEEEEEKWKEEDDDDGGff. .:,;,,;ijLGGGDDDDDDDDDDDD *\n\t *tt;. ....::::.. .:.,: .LDEEEKKKKKKKKKKKKWWWWKWWWWWWWWWWKKKKWtKKiDWWWKKKEEEEKi:..DEDDDDDDiiWKEEEEEEEEEEDDEijDEEEEEKEEEEEEEEEEEEWWEEGDDDGGLG. .:,;;iijLGGGDDDDDDDDDDDD *\n\t *tt;. .....:::.. ...,. .fEEEEKKKKKKKKWKKKKWWWWWWWWWWWWWWKWKKKiKDiLWWWWKEEEEEi,..fD:DDDDDti;WEEEEEEEEEEKDDi:iDDEEEEWEEEEEEEEEEEE#WEEGDDDDGGG. :,iitjLGGGDDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. GDEEEKKKKKKKKKWKKKWWW#WWWWWWWWWWWKWKKjiEjitWWWKKWEEEDi...DDLDDDDji;;WEEEEEEEEEEEDEj.iDDEEEEWEEEEEEEEEEEEWWEEDDDDDDGf. .,;tjfLGGDDDDDDDDDDDD *\n\t *tti. ....::::.. ...,. fEEEKKKKKKKKKKKKKKKW#WWWWWWWWWWWWWWWWtiEiiiWWWKKEWKEi....D.EDDDEi;.fWEEEEEEEEEEDDfL.;EDDEEEWEEEEEEEEEEEEWWEEEDDDDDGf. :;ijfLGGDDDDDDDDDDDD *\n\t *tti. ....::::.. ...,. LDEEEKKKKKKKKKKKKKKWWWWWWWWWWWWWWWW####WKiiiWWWKKKEEK,...:E:DDDEii..GWEEEEEEEEDWDDiL.,KDDEEEWEEEEEEEEEEEEWWKEEDDDDDGf: .,itfLGGDDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. fDEEEKKKKKKKKKWKKKKWWWWWWWWWWWWW########WLiiWWWKKKEEjD...G,DDDDi;...EWEEEEEEEEDKDEii..LDDEEEWEEEEEEEEEEEEWWWEEDDDDDGfi .,;tfLGGGDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. iGEEEKKKKKKKKKKWKKKKWWWWWWWWWWWW###########KiWWWKKEEE,.D..D.DDDii:...KKEEEEEEEEEDDj:...tEDEEEWEEEEEEEEEEEEWWWEEEDDDDDLL .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....::::......:. LEEEKKKKKKKKKKWWKKKWWW#KWWWWWWWW#####W####W##KWWKKEEL..:D.jjDDi;,....KKEEEEEEEDfDDi...:iKDEEEWKEEEEEEEEEEEWWWEEEEDDDDLG .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ...::::::..,. :GEEEKKKKKKKKKKKKWWWWW##WWWWWWWWW##WKWK#W#W####WWKEEK.....G.DDti,.....KKEEEEEEDWGDf.,...iKDEEEWWEEEEEEEEEEEW#WEEEEEDDDGL .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....::::::,. GDEEKKKKKKKKKKKKKWWWW###WWWWWWWWWW#WWWK###W#####WKEKK.....jDDL;;......KKEEEEEEEEEDi.f...;KDEEEWWEEEEEEEEEEEWWWWEEEEEDDGf .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....:::,,. .LEEEKKKKKWKKKKKWWWWWW###WWWWWWWWWW#WWKW#WW##W#WWWKEKD:....:DD:;......;KEEEEEEEKiDD..f...,KKEEEWWEEEEEEEEEEEWWWWEEEEEDDDf .:;tjLLGGGDDDDDDDDDD *\n\t *tti. ...::,,,:. GDEEKKKKKKKKKKKKWWWWWWW#WWWWWWWWWWW#KjKWWWWWWWWWWWWEK.j,..;fD.;.......fKEEEEEDKG:Di..,....DKEEEWWEEEEEEKEKKKWWWWEEEEEEDDf .:;tjLLGGDDDDDDDDDDD *\n\t *jti. ...::,,,,:. .fEEEKKKKKWKKKKKKWWWWWWW#WWWWWWWWWWK#KKKWWWWWWWWWWWWWK..f:.:G.,:.......EKEEEEEKK;:E:.......fKEEEWWKEKEKKKKKKKW#WWEEEEEEDDf: .,;tfLLGGDDDDDDDDDDD *\n\t *tti. ...:,,,;;,: iDEEKKKKKWKKKKKKKWWWWWWW#WWWWWWWWWWK#WDKWWKKWWWWWWWWWE..;G:G..,........KKEEEEEKi.Gi..:.....tKEEKWWWKKKKKKKKKKW##WKEEEEEEDfi .,;tfLLGGGDDDDDDDDDD *\n\t *tti. ....::,,;;;,LEEKKKKKKWKKKKKWWWWWWW###WWWWWWWWWWKWWDKWEEEWKKWWWWWKKj.:LG..;.........EKEEEEKG;.G...;.....;KKEKWWWKKKKKKKKKKW##WWKEEEEEDfL .,;tfLGGGDDDDDDDDDDD *\n\t *jti. ...::::,;ijDEEKKKKKWKKKKKKWKWWWWW##WWWWWWWWWWWKK#KKGDGDWEEWKKWKKGE,.i;.:.........:EKEEEKE;.:L...j.....,KWEKWWWKKKKKKKKKK####WKKEEEEDLG .,;tfLGGGGDDDDDDDDDD *\n\t *jti. ...:...,,;GEEKKKKKWWKKKKKWWWWWWWW###WWWWWWWWWKKKWWKiLGGEDEDEKGKKiEG..;...........jKEEEKK;:.G....,.....:KKEWWWWKKKKKKKWKK####WKKKKEEEGL .,;tfLGGGGDDDDDDDDDD *\n\t *jti. ...:. .:,GEEKKKKKWKKKKKWWWWWWWW####WWWWWWWWWKKKWWKii;fDLGDK: EEi:E:.............EKEEKK;;..L...........KKKWWWWKKKKKKKWKK####WKKKWKEEDf .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. ,EEKKKKKWWKKKKKWWWWWWWWW###WWWWWWWWKKKKfWWLt;i,. fi EG..D:.............EKEKK;;..t....:.......KWKWWWWKKKKKKKWKK####WKKKWEEEDf:. .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. GEEKKKKKWKKKKKWWWWWWWWW####WWWWWWWKKKKKt;KKEfff .;t.................KKKKi;:..GtGGfG.......KWWWWWWKKKKKKKWKK###WWWKKKKEEEf,,: .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. GEKKKKKWWKKKKKWWWWWWWWWW##WWWWWWWKKKKKKt;EiKKKK, ...t................jEKKG;;..,.....,LGi....KWWWWWWKKKKKKWKKKW####WKKKKKEEL,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. .GEEKKKKKWKKKKKWWWWWWWWWW###WWWWWWWKKKKKKtiE::tGG........................EEEj;;...,.........:D..DKWWWWWWKKKKK#KKW###W#WKKKKKEEfj:,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. DEKKKKKWWKKKKKWWWWWWWWW####WWWWWWWKKKKKKiiE:::.::.......................EEi;;...j.....f......:iDKWWWWWWKKKKK#WW######WKKKKKEELG :,,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. fEEKKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKK;tE::..........................DD;.;,.::......;........EWWWWWWWKKKKW#WW#####WWKKKWKKELG .:,,,:::,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. .DEKEKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKE,iD::..........................D..,;.,;tLffi...........DWDWWWW#KKKWWWWW#####W#KKKWKEEGL .:,;,,,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. ;EEKKKKWWKKKKKWWWWWW#WWWW####WWWWWWKKKKKEL:iD:..........................j ..;..;;:.....i,........DKtWWWWWKKWWWWWW#####WWWKKKEKEDf .:,;;;itfGGGDDDDDDDDDDDD *\n\t *jti. ...:. DEKKKKKWWKKKKWWWWWWW#WWWW####WWWWWWKKKKKEj:iG...............................:....................GKiWWWWWKKWW#WWW######WWKKKKKEEf .,;iitfGGGDDDDDDDDDDDD *\n\t *jti. ...:.:EKKKKKWWKKKKKWWWWWWW#WWW#####WWWWWKWKKKKEi:if:.................................iEKEKKKKKKDj......DKiWWWWWKWK##WW#######WWKKK:KEEL .:;itfGGGDDDDDDDDDDDD *\n\t *jji. ...:,DEEKKKWWWKWKKWWWWWWWWWWWW#####WWWWWWWKKKKEi:it..................................j. KKKKKKKKKKKf..DKiWWWWWKWW##WW#######WWKKK,KEEf .,;tfGGGDDDDDDDDDDDD *\n\t *jji. ..L:iDEEKKKWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKKi.i;.................................. . KKKWWWWWWWWK..DGiWWWWWKK##WWW#####W#WWKKKjEKEL, .:;tfGGGDDDDDDDDDDDD *\n\t *jji. .f:::EEEKKKWWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKK;.i,.................................:: KKEKWWWWWWfWK..EiiWWWWWKWW#WW##########KKKD,KELj .:;tfGGDDDDDDDDDDDDD *\n\t *jji. .t::::,DEEKKKWWKKKKWWWWWWWWW#WWWW#####WWWWKKWKKKEK;.i:.................................GDDEEEKKKWWWWWtWWD.E;iWWWWWW###WW#########WWKKK.EEDG .:;tfGGGDDDDDDDDDDDD *\n\t *jji. . j..::::EKEKKKWWWKKKKWWWWWWWWW#WWW######WWWWKKWKKKEK;.t:.................................ELLEDDEEEWWWWEtWK,.KiiWWWWWW###W##########WWKKK:EEEG .;tjfLLGDDDDDDDDDDDDDDD *\n\t *jji. i.::::::,EEEKKWWWKKKKKWWWWWWWWW#WWW#####WWWWWKWKKKKEE,.t..................................DfiEGDDDEEKKKttKWG.KiiWWWWW##WWW##########WWKKK:fEEL ,fGGGDDDDDDDDEEEDDDDDDDDDD *\n\t *jji. .;:..:::::DEEEKKWWWKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKED,.t..................................ifjDDGGEGDKK.ttKKE.DiWWWWW###WW##########WWWKKK:.KELiLGGGGDDDDDDDDDDDDEEEDDDDDDD *\n\t *jji. i.:.::::::,KEEKKWWWKKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKEL:.j..................................GGf,;ifLLED .iiKKi:fWWWWWW##W#W##########WWWKKK:.KKLGGDDDDDDDDDDDDDDDDEDDEEDDDDD *\n\t *jji. .j:.::::::::EEEKKKWWWKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKf:.f..................................:EEfftf .,. ;iE,..jWWWWWWW###W############WWKKK,:KKGDDDDDDDDDDDDDDDDDDDDDDDEDDDD *\n\t *jji. .:.::::::::,,EEEKKWWWKKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKt..G....................................EEELL; .j....tKWWWWWWW################WWWKKtfGKGEDDDDDDDDDDDDDDDDDDDDDDDEEDD *\n\t *jji. :...:::::::,,jEEKKWWWWKKKKKKWWWWWWWWW##KWW#####KWWWWWWKKKKEi..D....................................:jEEE.........;KKWWWWWWWW#WW##W##########WWKKDLGKEKDDDDDDDDDDDDDDDDDDDDDDDDDED *\n\t *jji. i:.::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWW##WWW#####WWWWWWWKKKKKi..D......................................:::::......,KKKWWWWWWWWW#####W########WWWKKKGGKKEGGGGGGGGDDDDDDDDDDDDDDDDDDE *\n\t *jji. i..:::::::::,,tEEKKWWWWKKKKKWWWWWWWWWWW##WW######WWWWWWWKKKKKi..D......................................::::......:EKKKWWWWWWWWWWW##WW########W#WKKWGGKKGGGGGGGGGGGGGGGDDDDDDDDDDDDD *\n\t *jji. .:::::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWWW##WW#####WWWWWWWWKKKKKi..D....................................:::::::::..tELii;KWWWWWWWWWW##WW######WWWWWWKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGDG *\n\t *jjt. :.::::::::,,,,fEEKKWWWWKKKKKKWWWWWWWWWW###WW####WWWWWWW#WKKKKKi..D....................................:::::::.:.,;;;;;;,KKWWWWWWWWW#WW########WWWKKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGGG *\n\t *jji. ;.::::::::,,,,;EEEKWWWWWKKKKKWWWWWWWWWWWW##WW###WKWWWWWK#WKKKKKi..G......................................:::::::,;;;;:...KKKWWWWWWWWWKWW#######WWWWKKGLGKDGGGGGGLLGGGGGGGGGGGGGGGGGGG *\n\t *jjt. f.:::::::::,,,,fEEKKWWWWWKKKKKWWWWWWWWWWW###WW##WKKWWWWWW#WKKKKK;.jt........i.............................:::::::;j;;....:E.KKKWWWWWWWKWW#####W#WWWWKKLLGWEEGGGGGLGGGGGGGGGGGGGGGGGGGG *\n\t *jjt. ...:::::::,,,,,;DEEKWWWWWKKKKKWWWWWWWWWWWW####WWWKKKWWWWWWWWKKKKK;.E;.........t.............................:::::ii;;.....D...KKWWWWWWWKWW#####WWEWWWKKGGGEKKGGGGGLGGGGGGGGGGGGGLGGGGGG *\n\t *fji. ;.:::::::,,,,,;LEEKKWWWWWKKKKKWWWWWWWWWWWW####KWKKKKWWWWWWWWKKKKKi.D;..........j.............................:::tt;,.....:.....KKWWWWWWKWWWW##WWWGWWWKKGGGGKEGGGGGGGGGGGGGGGGGGGLLGGGGL *\n\t *fji. t::::::::,,,,,,;EEEKWWWWWKKKKKKKWWWWWWWWWWW##WKWKKKKKWWWWWWWWKKKKKi:D;............j...........................::LL;,.............KKWWWWWKWWWWWWWWWGWWWKKGGGGKGGGGGGGGGGGGGGGGGGGGLLGGGGL *\n\t *fjt: .:::::::,,,,,,,DEEKWWWWWWKKKKKKKWWWWWWWWWWWWKKWKKKKKKWWWWK#WWKKKKWitE;........... ............................:G;;:...............KKKWWKKWWWWWWWWWGWWWKKGGGGWGGGGGGGGGGGGGGGGGGGGGGGGGGL *\n\t *fjji;:. .f:::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWWKKKKKKKKKKKWWKWWWWWKKKKWGKD;........................................L;;..................DKKWKKWWWWWWWWWGWWWKKDGGGKDGGGGGGGGGGGGGGGGGGGGGGGGGG *\n\t *fjjtii;,:. :::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWKKKKKKKKKKKKWWWWWW#WWKKKKWiEj;......................................:i,;....,...............;KKEKWWWWWWWWWGKWWKKDDGGDEGGGDGGGGGDGGGGGGGGGGGGGGGG *\n\t *fjtiiiii;;:. j::::::,,,,,,,;;EEEKWWWWW#KKKKKWWWWWWWWWKKKKKKWKKKKKKKWWWWWWWWWKKKKWtEL;:....................................;;;:...,;j................:KEEWWWWWWWWWDDWWKKDDDDDKDDDDDDDDDDDDDDDGGGGGGGGGGG *\n\t *fjti;;iiii;;,:::::::,,,,,,,,;EEEKWWWWWWWKKKKWWWWWWWWKKKKKKKWKKKKKKKWWWWWWW#W#KKKKWEEii;...................................f;:....,;L...................EEKWWWWWWWWDDWWKKDDDDDKEDDDDDDDDDDDDDDDDDDDDDGGGG *\n\t *fjt,,,;;;;ii;f::::::,,,,,,,;;EEKWWWWWWWKKKKKWWWKWWKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWKEij;:...............................:G;,.....,;f....................:tKKWWWWWWWDDWWKKDDDDDKKDDDDDDDDDDDDDDDDDDDDDDDDD *\n\t *jjt. ..:,;;;;,::::,,,,,,,,;;GEEWWWWWWWWKKKKWKKWKKKKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWEDi;j;............................,Li;L;;;..,;;f........................KKKKWWWKDDWWKKDDDGDKKGGGGGGGGDGDDDDDDDDDDDDDDD *\n\t *fjt. .:,,,:::::,,,,,,,;;;EEKWWWWWWWKKKKKKWKKKKKKKKKKKKKKKKKKKKKWKKKWKW##W#KKKKWEti;;G;........................tEEEL;;;;;;;;;;L..........................DKKKKKEDDWWKEDGftiLE;;;;itjLGGGGGGDDDDDDDDDDD *\n\t *fjt. .j::::,,,,,,,;;;DEEWWWWWWWWKKKKWKKKKKKKKKKKKKKKKKKKKKKKWKKWWWK##W#KKKKKEii;;;L;...................iDEEEEEEKKi;j;;;;jD.....:......................,KKKKDGGEKKE:::::;E::::::::::,tLGGDDDDDDDDDD *\n\t *fjt. .;:::,,,,,,,;;;;EEKWWWWWWWWKWKKKKKKKKKKKKKKKWKKKKKKKKKKWKKWWWW#WW#KKKKKKii;;;;f;.............:tDEEEEEKKKKKKKKEti;;;L...............................EEKf;:iKKE::::::E::::::::::::::ifDDDDDDDDD *\n\t *fjt: :::,,,,,,,,;;;DEEWWWWWWWWWEKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####KKKKKEiii;;;;f,.........iDEEEEKKKKKKKKKKKKKKKf;iG......i..........................fK::::KKE::::::E::::::::::::::::,tGGDDDDD *\n\t *fjt: t:::,,,,,,;;;;iDEKWWWWWWKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####WKKKKLiii;;;;;L,....,Li;EDEEEEKKKKKKKKKKKKKKKKiG......;:...........................:i:::KKE:::::,E,::::::::::::::::::iGDDDD *\n\t *jjt. f::,,,,,,,;;;;GEEWWWWKEEKEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKWWWWW###WWKKKKiii;;;;;;;G,;L;;iiEEEEEEEKKKKKKKKKKKKKWWKE......;t.........:....................j::KEE:,::,,D,,::::,,,,,,:::::::::tDDD *\n\t *fjt:. ,::,,,,,,,;;;;EEWWKEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKKWWWWW#W#KKKKKKiiiiii;;;;;i;;iiiEEKEEKKWKKKKKKKWKKKKKWWWGi;...;t......,;;;;,....................:,EEE,,,,,,D,,,,,,,,,,,,,,,,::,::::tG *\n\t *fjt:. ,::,,,,,,,;;;;DEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWW#W#KKKKKKiiiii;;i;;;;;iiiKKKEKKKKWWKWWWWWWKKKKWWWWW;;;:;L.....;;;;;;;;;....................,KEE,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,; *\n\t *fjt:. f:,,,,,,,;;;;jEDEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWW#W##KKKKKKiiiiiiii;i;;iiiEKKKKKKKKWKWWWWWWWWKKKWWWWWKi;;i.....,jEEfGi;;;;;...................EED,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,, *\n\t *fjt:. .f::,,,,,,;;jEEDEEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWKWWWWW###KKKKKLiiiiiiiiiiiiiiEEKKKKKKKKWWWWWWWWWWWWKWWWWWWGi;i;,..;jDDDKEGi;;;;;;:................EED,,,,,,D,,,,,,,,,,,,,,,,,,,,,,,,, *\n\t *fjt:. .. ;::,,,,,;;EDDEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKW#WW####KWKKKiiiiiiiiiiiiijKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWt;i;;;;i;DDDDDDGi;;;;;;;;:.............EDf;,,,;,G;;;;;;;;;;;;;;;,,,,,,,,,, *\n\t *fjt:......:,,,,,,;LDDDEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWWKWWWW####KKKKKiiiiiiiiiiijKEKKWKKKKKKKWWWWWWWWWWWWWWWWWWWWWWiLiii;i;DEEEEDDE;i;;;;;;;;;:..........EDi,;;;;;L;;;;;;;;;;;;;;;;;;,,,,,,, *\n\t *fjt:......:,,,,,;EDDDEEKEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKWWWWKKWWW##W#KWKKWEiiiiiijGKKKKKWWKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKi;iiiiDDEEEEEEDEi;;;;;;;;;;;;;,:.....ED;;;;;;;j;;;;;;;;;;;;;;;;;;;;;;;,, *\n\t *fjt:.....t,,,,,;DDDDEEEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKWWWW##WKWKKWKiiiKKKKKKKKKWWKKKKKKKKWWWWWWWWWWWWWWW#WWWWWWWWWiiiiifLEEEEEEEEDi;i;;;;;;;;;;;;.....DD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; *\n\t *fjt:.....G,,,,,GDDDEEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKKWWWKKKWWW###WKWKKWKitKKKKKKKKKWKKKKKKKKKKWWWWWWWWWWWWWW###WWWWWWWWEiiiiiiiEEEEEEEEDGiiii;;;;;;;;;.....GD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; *\n\t *fjt:.....L,,,,;GDDDEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWDGWWW###KKWWKWKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWW####WWWWWWWWWiiiiiiiiEEEEEEEEEEDi;i;;;;;;;;.....Lj;;;;;;i;iiiiii;;;;;;ii;;;;;;;;;;; *\n\t ***********************************************************************************************************************************************************************************************************/\n\n\t\t\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "import java.lang.reflect.Array;", "Array", "java.lang.reflect", "public class Main {\n\n\tstatic Scanner inp= new Scanner(System.in);\n\tstatic PrintWriter out= new PrintWriter(System.out);\n\tpublic static void main(String args[]) {\t\t \t\n\t \t\n\t\tMain g=new Main();\n\t\tg.main();\n\t\tout.close();\n\t\t\n\t}\n\t\n\t\n\t\n\tvoid main() {\n\t\t\n\t\tint x=inp.nextInt();\n\t\tout.println(x==1?0:1);\n\t\t\n\t}\n\t\n\t\n\t\n\t\n\t/*********************************************************************************************************************************************************************************************************\n\t * ti;. .:,:i: :,;;itt;. fDDEDDEEEEEEKEEEEEKEEEEEEEEEEEEEEEEE###WKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWW#WWWWWKKKKKEE :,:. f::::. .,ijLGDDDDDDDEEEEEEE*\n\t *ti;. .:,:i: .:,;itt;: GLDEEGEEEEEEEEEEEEEEEEEEDEEEEEEEEEEE#W#WEKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKKKKKKG. .::. f:,...,ijLGDDDDDDDDEEEEEE *\n\t *ti;. .:,:i: :,;;iti, :fDDEEEEEEEEEEEEEEEKEEEEDEEEEEEEEEEEW##WEEEKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWWKKKKKKEG .::. .f,::,ijLGDDDDDDDDEEEEEE *\n\t *ti;. .:,:i: .,,;iti;. LDDEEEEEEEEEEKEEEEWEEEDDEEEEEEEEEEE#WWWEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWKKKKKEDj .::. .:L;;ijfGDDDDDDDDDEEEEE *\n\t *ti;. .:,:i: .:,;;iii:LLDEEEEEEEEEEEKEEEEEEEEDEEEEEEEEEEEW#WWEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWKWWWWWWWWWWWWWWKKKKKKKEL .::. .:;LijLGGDDDDDDDDEEEEE *\n\t *ti;. .:,:;: :,;;ittfDEEEEEEEEEEEEEEEEKEEEGEEEEEEEEEEEKWWWEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWKKKKKKKELj .::. :,;jffGGDDDDDDDDDEEEE *\n\t *ti;. .:,:i: .,;;tGGDEEEEEEEEEEEKEEEKEEEDEEEEEEEEEEEEWWWEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWKWWWWWWKKKKKKKEEL .::. .:;itDGGDDDDDDDDDEEEE *\n\t *ti;. .:::;: :;ifDEEEEEEEEEEEEKEEEKEEEEEEEEEEEEEEEWWWEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WWWKKKKKKKKEEf .::. :,itfGEDDDDDDDDDDDEE *\n\t *ti;. .:::;: :GGEEEEEEEEEEEKEKEEKEEEEEEEEEEEEEEEEWWEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKKEEDG .::. .,;jfLGKDLDDDDDDEEDD *\n\t *ti;. .:::;: fDEEEEEEKKKKKKKKKEKEEEEEEEEEEEEEEE#WEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#KKKKKKKKKKEEf .:::. .,;tfLGDEDDDDDDDDEEE *\n\t *ti;. :::;: fDEEEEEEKKKKKKKKKKWKEEEEEEEEEEEEEEEWKEEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKKKEEft :::. .,;tfLGDDDKDDDDDDDDD *\n\t *ti;. .::;: fDEEEEEEKKKKKKKWKKKKKEEEEEEEEEEEEE#WEEWEEEEEDEEDEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKEEGG :,:. .,;tfLGGDDDKDDDDDDDD *\n\t *ti;. .:.;: tGDEEEEKKKKKKKKKKKKKKKKKEEEEEEEEEEEWEEKWEEEEEEEDEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKKKKKEEDf :::. .,;tfLGGDDDDEDDDDDDD *\n\t *ti;. .::;: fDEEEEEKKKKKKKKKKKWKKKKKKKKEEEEEEEWWEEWEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKEEEft.::. .,;tfLGGDDDDDDEDDDDD *\n\t *ti;. .:.;: tGDEEEKKKKKKKKKKKKKKKKKKKKKKEKEEEEE#EEWWEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKEEEGD:::. .,;tfLGGDDDDDDDEDDDD *\n\t *ti;. .:.,. LDEEEEKKKKKKKKKKWKWKKKKKKKKKKKKEEEKWEKW#EEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKW##KKKKKKEEEEf,,:. .,;tfLGGDDDDDDDDEDDD *\n\t *ti;. ..:.,. LGDEEEEKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEEW#WEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKK##KKKKKEEEEEfi;,. .,;tfLGGDDDDDDDDDKDD *\n\t *tt;. .:.,: jDEEEEKKKKKKKKKKWWKKKKKKKKKKKKKKKKKWKE#WWEEEEEEEEEEEEEEWEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKWWKKKKEEEEDfG;,: .,;tfLGGDDDDDDDDDDKD *\n\t *tii,. .:.,. tGDEEEEKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKKWWWKEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKW#KKKKEEEEDGGi;,. .,;tfLGGDDDDDDDDDDDE *\n\t *ti;;,:. .:.,: fDEEEEKKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEK#WWKEEEEEEEEEEEEDEEEEEEEEEEEEEEGEEEEEEEEEEEEEEEEEEEKKKKKKKWWKKEEEEEEDDf;;;,. .,;tfLGGDDDDDDDDDDDD *\n\t *tii;,,:.. ...,. ;LEEEEEKKKKKKWKKKKWKKKKKKKKKKKKKKKKKEKKW#WEEEEEEEEEEEEEjEEEEEEEEEKEEEEGEEEEEEEEEKEEEEEEEEEEEEEEEEE#WKEEEEEEDDf;;;;,: .,itfLGGDDDDDDDDDDDD *\n\t *ti;,,,,,:. ...,. LDEEEEKKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKK#W#WEEEEEEEEEEEDDLEEEEEEEEEWEEEEDEEEEEEEEEKEEEEEEEEEEEEEEEEEWWEEEEEEEDDfj,,,,,:. .,itfGGGDDDDDDDDDDDD *\n\t *tii,,,,::::. ...,: .fDEEEEKKKKKKWKKKKWWWKKKKKKKKKKKKKKKEKKW#WWEEEEEEEEEEEKiKEEKEEEEEEWEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEEWWEEEEEEEDDLD:::,,,:. .,ijfGGGDDDDDDDDDDDD *\n\t *ti;:::::::::.. .:.,: LDEEEEKKKKKKKWKKKKWWKKKKKKKKKKKKKKKKtKKWWWWKEEEEEEEEEDiiDEEEEEEEEWWEEEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEWKEEEEEDDDGL:. .:,,,: .,ijLGGGDDDDDDDDDDDD *\n\t *tt;. .::::::::.. ...,: :fDEEEKKKKKKKKKKKKWW#KKKKKKKKKKKKKKKKfKKWWWWKEEEEEEEEDti,DEKEEEEEEWWEEEDEEEEEEEEEKEEEEEEEEEEEEEDEEEEE#WEEEEEGGDGf:. .:,;,:. .,ijLGGDDDDDDDDDDDDD *\n\t *tt;. .:::::::.. ...,: GDEEEKKKKKKKKWKKKKWWWKKKWKKKKKKKWWWKDEKLWWWWKKEEEEEEDEi,LDEEEEEEEEWWEEEEEEEEEEEEEEEEEEEEEEEEEDEDEEEEEW#EEEEDDDDGf,. :,,,:...,ijLGGGDDDDDDDDDDDD *\n\t *tt;. .....::::.. ...,: fDEEEKKKKKKKKWKKKKWWWWKKKWKKKKKKKKKKfWKiWWW#KKEEEEEEEi;.EDfEEEDEEiWWEEEEEEEEEEEEDGKEEEEEEEEEEDEEEEEEEWWEEEEDDDGGLi. .,;,:::,ijLGGGDDDDDDDDDDDD *\n\t *tt;. ....:::::. ...,. iDEEEEKKKKKKKKWKKWKWWWWWKKWWWKKKKKKKKtWKt#WWWKKEEEEEDji..DDKDDEDEGiWKEEEEEEEEEEDDEjEEEEEEEEEEEDEEEEEEEKWKEEDDDDGGff. .:,;,,;ijLGGGDDDDDDDDDDDD *\n\t *tt;. ....::::.. .:.,: .LDEEEKKKKKKKKKKKKWWWWKWWWWWWWWWWKKKKWtKKiDWWWKKKEEEEKi:..DEDDDDDDiiWKEEEEEEEEEEDDEijDEEEEEKEEEEEEEEEEEEWWEEGDDDGGLG. .:,;;iijLGGGDDDDDDDDDDDD *\n\t *tt;. .....:::.. ...,. .fEEEEKKKKKKKKWKKKKWWWWWWWWWWWWWWKWKKKiKDiLWWWWKEEEEEi,..fD:DDDDDti;WEEEEEEEEEEKDDi:iDDEEEEWEEEEEEEEEEEE#WEEGDDDDGGG. :,iitjLGGGDDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. GDEEEKKKKKKKKKWKKKWWW#WWWWWWWWWWWKWKKjiEjitWWWKKWEEEDi...DDLDDDDji;;WEEEEEEEEEEEDEj.iDDEEEEWEEEEEEEEEEEEWWEEDDDDDDGf. .,;tjfLGGDDDDDDDDDDDD *\n\t *tti. ....::::.. ...,. fEEEKKKKKKKKKKKKKKKW#WWWWWWWWWWWWWWWWtiEiiiWWWKKEWKEi....D.EDDDEi;.fWEEEEEEEEEEDDfL.;EDDEEEWEEEEEEEEEEEEWWEEEDDDDDGf. :;ijfLGGDDDDDDDDDDDD *\n\t *tti. ....::::.. ...,. LDEEEKKKKKKKKKKKKKKWWWWWWWWWWWWWWWW####WKiiiWWWKKKEEK,...:E:DDDEii..GWEEEEEEEEDWDDiL.,KDDEEEWEEEEEEEEEEEEWWKEEDDDDDGf: .,itfLGGDDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. fDEEEKKKKKKKKKWKKKKWWWWWWWWWWWWW########WLiiWWWKKKEEjD...G,DDDDi;...EWEEEEEEEEDKDEii..LDDEEEWEEEEEEEEEEEEWWWEEDDDDDGfi .,;tfLGGGDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. iGEEEKKKKKKKKKKWKKKKWWWWWWWWWWWW###########KiWWWKKEEE,.D..D.DDDii:...KKEEEEEEEEEDDj:...tEDEEEWEEEEEEEEEEEEWWWEEEDDDDDLL .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....::::......:. LEEEKKKKKKKKKKWWKKKWWW#KWWWWWWWW#####W####W##KWWKKEEL..:D.jjDDi;,....KKEEEEEEEDfDDi...:iKDEEEWKEEEEEEEEEEEWWWEEEEDDDDLG .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ...::::::..,. :GEEEKKKKKKKKKKKKWWWWW##WWWWWWWWW##WKWK#W#W####WWKEEK.....G.DDti,.....KKEEEEEEDWGDf.,...iKDEEEWWEEEEEEEEEEEW#WEEEEEDDDGL .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....::::::,. GDEEKKKKKKKKKKKKKWWWW###WWWWWWWWWW#WWWK###W#####WKEKK.....jDDL;;......KKEEEEEEEEEDi.f...;KDEEEWWEEEEEEEEEEEWWWWEEEEEDDGf .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....:::,,. .LEEEKKKKKWKKKKKWWWWWW###WWWWWWWWWW#WWKW#WW##W#WWWKEKD:....:DD:;......;KEEEEEEEKiDD..f...,KKEEEWWEEEEEEEEEEEWWWWEEEEEDDDf .:;tjLLGGGDDDDDDDDDD *\n\t *tti. ...::,,,:. GDEEKKKKKKKKKKKKWWWWWWW#WWWWWWWWWWW#KjKWWWWWWWWWWWWEK.j,..;fD.;.......fKEEEEEDKG:Di..,....DKEEEWWEEEEEEKEKKKWWWWEEEEEEDDf .:;tjLLGGDDDDDDDDDDD *\n\t *jti. ...::,,,,:. .fEEEKKKKKWKKKKKKWWWWWWW#WWWWWWWWWWK#KKKWWWWWWWWWWWWWK..f:.:G.,:.......EKEEEEEKK;:E:.......fKEEEWWKEKEKKKKKKKW#WWEEEEEEDDf: .,;tfLLGGDDDDDDDDDDD *\n\t *tti. ...:,,,;;,: iDEEKKKKKWKKKKKKKWWWWWWW#WWWWWWWWWWK#WDKWWKKWWWWWWWWWE..;G:G..,........KKEEEEEKi.Gi..:.....tKEEKWWWKKKKKKKKKKW##WKEEEEEEDfi .,;tfLLGGGDDDDDDDDDD *\n\t *tti. ....::,,;;;,LEEKKKKKKWKKKKKWWWWWWW###WWWWWWWWWWKWWDKWEEEWKKWWWWWKKj.:LG..;.........EKEEEEKG;.G...;.....;KKEKWWWKKKKKKKKKKW##WWKEEEEEDfL .,;tfLGGGDDDDDDDDDDD *\n\t *jti. ...::::,;ijDEEKKKKKWKKKKKKWKWWWWW##WWWWWWWWWWWKK#KKGDGDWEEWKKWKKGE,.i;.:.........:EKEEEKE;.:L...j.....,KWEKWWWKKKKKKKKKK####WKKEEEEDLG .,;tfLGGGGDDDDDDDDDD *\n\t *jti. ...:...,,;GEEKKKKKWWKKKKKWWWWWWWW###WWWWWWWWWKKKWWKiLGGEDEDEKGKKiEG..;...........jKEEEKK;:.G....,.....:KKEWWWWKKKKKKKWKK####WKKKKEEEGL .,;tfLGGGGDDDDDDDDDD *\n\t *jti. ...:. .:,GEEKKKKKWKKKKKWWWWWWWW####WWWWWWWWWKKKWWKii;fDLGDK: EEi:E:.............EKEEKK;;..L...........KKKWWWWKKKKKKKWKK####WKKKWKEEDf .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. ,EEKKKKKWWKKKKKWWWWWWWWW###WWWWWWWWKKKKfWWLt;i,. fi EG..D:.............EKEKK;;..t....:.......KWKWWWWKKKKKKKWKK####WKKKWEEEDf:. .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. GEEKKKKKWKKKKKWWWWWWWWW####WWWWWWWKKKKKt;KKEfff .;t.................KKKKi;:..GtGGfG.......KWWWWWWKKKKKKKWKK###WWWKKKKEEEf,,: .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. GEKKKKKWWKKKKKWWWWWWWWWW##WWWWWWWKKKKKKt;EiKKKK, ...t................jEKKG;;..,.....,LGi....KWWWWWWKKKKKKWKKKW####WKKKKKEEL,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. .GEEKKKKKWKKKKKWWWWWWWWWW###WWWWWWWKKKKKKtiE::tGG........................EEEj;;...,.........:D..DKWWWWWWKKKKK#KKW###W#WKKKKKEEfj:,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. DEKKKKKWWKKKKKWWWWWWWWW####WWWWWWWKKKKKKiiE:::.::.......................EEi;;...j.....f......:iDKWWWWWWKKKKK#WW######WKKKKKEELG :,,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. fEEKKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKK;tE::..........................DD;.;,.::......;........EWWWWWWWKKKKW#WW#####WWKKKWKKELG .:,,,:::,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. .DEKEKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKE,iD::..........................D..,;.,;tLffi...........DWDWWWW#KKKWWWWW#####W#KKKWKEEGL .:,;,,,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. ;EEKKKKWWKKKKKWWWWWW#WWWW####WWWWWWKKKKKEL:iD:..........................j ..;..;;:.....i,........DKtWWWWWKKWWWWWW#####WWWKKKEKEDf .:,;;;itfGGGDDDDDDDDDDDD *\n\t *jti. ...:. DEKKKKKWWKKKKWWWWWWW#WWWW####WWWWWWKKKKKEj:iG...............................:....................GKiWWWWWKKWW#WWW######WWKKKKKEEf .,;iitfGGGDDDDDDDDDDDD *\n\t *jti. ...:.:EKKKKKWWKKKKKWWWWWWW#WWW#####WWWWWKWKKKKEi:if:.................................iEKEKKKKKKDj......DKiWWWWWKWK##WW#######WWKKK:KEEL .:;itfGGGDDDDDDDDDDDD *\n\t *jji. ...:,DEEKKKWWWKWKKWWWWWWWWWWWW#####WWWWWWWKKKKEi:it..................................j. KKKKKKKKKKKf..DKiWWWWWKWW##WW#######WWKKK,KEEf .,;tfGGGDDDDDDDDDDDD *\n\t *jji. ..L:iDEEKKKWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKKi.i;.................................. . KKKWWWWWWWWK..DGiWWWWWKK##WWW#####W#WWKKKjEKEL, .:;tfGGGDDDDDDDDDDDD *\n\t *jji. .f:::EEEKKKWWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKK;.i,.................................:: KKEKWWWWWWfWK..EiiWWWWWKWW#WW##########KKKD,KELj .:;tfGGDDDDDDDDDDDDD *\n\t *jji. .t::::,DEEKKKWWKKKKWWWWWWWWW#WWWW#####WWWWKKWKKKEK;.i:.................................GDDEEEKKKWWWWWtWWD.E;iWWWWWW###WW#########WWKKK.EEDG .:;tfGGGDDDDDDDDDDDD *\n\t *jji. . j..::::EKEKKKWWWKKKKWWWWWWWWW#WWW######WWWWKKWKKKEK;.t:.................................ELLEDDEEEWWWWEtWK,.KiiWWWWWW###W##########WWKKK:EEEG .;tjfLLGDDDDDDDDDDDDDDD *\n\t *jji. i.::::::,EEEKKWWWKKKKKWWWWWWWWW#WWW#####WWWWWKWKKKKEE,.t..................................DfiEGDDDEEKKKttKWG.KiiWWWWW##WWW##########WWKKK:fEEL ,fGGGDDDDDDDDEEEDDDDDDDDDD *\n\t *jji. .;:..:::::DEEEKKWWWKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKED,.t..................................ifjDDGGEGDKK.ttKKE.DiWWWWW###WW##########WWWKKK:.KELiLGGGGDDDDDDDDDDDDEEEDDDDDDD *\n\t *jji. i.:.::::::,KEEKKWWWKKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKEL:.j..................................GGf,;ifLLED .iiKKi:fWWWWWW##W#W##########WWWKKK:.KKLGGDDDDDDDDDDDDDDDDEDDEEDDDDD *\n\t *jji. .j:.::::::::EEEKKKWWWKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKf:.f..................................:EEfftf .,. ;iE,..jWWWWWWW###W############WWKKK,:KKGDDDDDDDDDDDDDDDDDDDDDDDEDDDD *\n\t *jji. .:.::::::::,,EEEKKWWWKKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKt..G....................................EEELL; .j....tKWWWWWWW################WWWKKtfGKGEDDDDDDDDDDDDDDDDDDDDDDDEEDD *\n\t *jji. :...:::::::,,jEEKKWWWWKKKKKKWWWWWWWWW##KWW#####KWWWWWWKKKKEi..D....................................:jEEE.........;KKWWWWWWWW#WW##W##########WWKKDLGKEKDDDDDDDDDDDDDDDDDDDDDDDDDED *\n\t *jji. i:.::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWW##WWW#####WWWWWWWKKKKKi..D......................................:::::......,KKKWWWWWWWWW#####W########WWWKKKGGKKEGGGGGGGGDDDDDDDDDDDDDDDDDDE *\n\t *jji. i..:::::::::,,tEEKKWWWWKKKKKWWWWWWWWWWW##WW######WWWWWWWKKKKKi..D......................................::::......:EKKKWWWWWWWWWWW##WW########W#WKKWGGKKGGGGGGGGGGGGGGGDDDDDDDDDDDDD *\n\t *jji. .:::::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWWW##WW#####WWWWWWWWKKKKKi..D....................................:::::::::..tELii;KWWWWWWWWWW##WW######WWWWWWKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGDG *\n\t *jjt. :.::::::::,,,,fEEKKWWWWKKKKKKWWWWWWWWWW###WW####WWWWWWW#WKKKKKi..D....................................:::::::.:.,;;;;;;,KKWWWWWWWWW#WW########WWWKKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGGG *\n\t *jji. ;.::::::::,,,,;EEEKWWWWWKKKKKWWWWWWWWWWWW##WW###WKWWWWWK#WKKKKKi..G......................................:::::::,;;;;:...KKKWWWWWWWWWKWW#######WWWWKKGLGKDGGGGGGLLGGGGGGGGGGGGGGGGGGG *\n\t *jjt. f.:::::::::,,,,fEEKKWWWWWKKKKKWWWWWWWWWWW###WW##WKKWWWWWW#WKKKKK;.jt........i.............................:::::::;j;;....:E.KKKWWWWWWWKWW#####W#WWWWKKLLGWEEGGGGGLGGGGGGGGGGGGGGGGGGGG *\n\t *jjt. ...:::::::,,,,,;DEEKWWWWWKKKKKWWWWWWWWWWWW####WWWKKKWWWWWWWWKKKKK;.E;.........t.............................:::::ii;;.....D...KKWWWWWWWKWW#####WWEWWWKKGGGEKKGGGGGLGGGGGGGGGGGGGLGGGGGG *\n\t *fji. ;.:::::::,,,,,;LEEKKWWWWWKKKKKWWWWWWWWWWWW####KWKKKKWWWWWWWWKKKKKi.D;..........j.............................:::tt;,.....:.....KKWWWWWWKWWWW##WWWGWWWKKGGGGKEGGGGGGGGGGGGGGGGGGGLLGGGGL *\n\t *fji. t::::::::,,,,,,;EEEKWWWWWKKKKKKKWWWWWWWWWWW##WKWKKKKKWWWWWWWWKKKKKi:D;............j...........................::LL;,.............KKWWWWWKWWWWWWWWWGWWWKKGGGGKGGGGGGGGGGGGGGGGGGGGLLGGGGL *\n\t *fjt: .:::::::,,,,,,,DEEKWWWWWWKKKKKKKWWWWWWWWWWWWKKWKKKKKKWWWWK#WWKKKKWitE;........... ............................:G;;:...............KKKWWKKWWWWWWWWWGWWWKKGGGGWGGGGGGGGGGGGGGGGGGGGGGGGGGL *\n\t *fjji;:. .f:::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWWKKKKKKKKKKKWWKWWWWWKKKKWGKD;........................................L;;..................DKKWKKWWWWWWWWWGWWWKKDGGGKDGGGGGGGGGGGGGGGGGGGGGGGGGG *\n\t *fjjtii;,:. :::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWKKKKKKKKKKKKWWWWWW#WWKKKKWiEj;......................................:i,;....,...............;KKEKWWWWWWWWWGKWWKKDDGGDEGGGDGGGGGDGGGGGGGGGGGGGGGG *\n\t *fjtiiiii;;:. j::::::,,,,,,,;;EEEKWWWWW#KKKKKWWWWWWWWWKKKKKKWKKKKKKKWWWWWWWWWKKKKWtEL;:....................................;;;:...,;j................:KEEWWWWWWWWWDDWWKKDDDDDKDDDDDDDDDDDDDDDGGGGGGGGGGG *\n\t *fjti;;iiii;;,:::::::,,,,,,,,;EEEKWWWWWWWKKKKWWWWWWWWKKKKKKKWKKKKKKKWWWWWWW#W#KKKKWEEii;...................................f;:....,;L...................EEKWWWWWWWWDDWWKKDDDDDKEDDDDDDDDDDDDDDDDDDDDDGGGG *\n\t *fjt,,,;;;;ii;f::::::,,,,,,,;;EEKWWWWWWWKKKKKWWWKWWKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWKEij;:...............................:G;,.....,;f....................:tKKWWWWWWWDDWWKKDDDDDKKDDDDDDDDDDDDDDDDDDDDDDDDD *\n\t *jjt. ..:,;;;;,::::,,,,,,,,;;GEEWWWWWWWWKKKKWKKWKKKKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWEDi;j;............................,Li;L;;;..,;;f........................KKKKWWWKDDWWKKDDDGDKKGGGGGGGGDGDDDDDDDDDDDDDDD *\n\t *fjt. .:,,,:::::,,,,,,,;;;EEKWWWWWWWKKKKKKWKKKKKKKKKKKKKKKKKKKKKWKKKWKW##W#KKKKWEti;;G;........................tEEEL;;;;;;;;;;L..........................DKKKKKEDDWWKEDGftiLE;;;;itjLGGGGGGDDDDDDDDDDD *\n\t *fjt. .j::::,,,,,,,;;;DEEWWWWWWWWKKKKWKKKKKKKKKKKKKKKKKKKKKKKWKKWWWK##W#KKKKKEii;;;L;...................iDEEEEEEKKi;j;;;;jD.....:......................,KKKKDGGEKKE:::::;E::::::::::,tLGGDDDDDDDDDD *\n\t *fjt. .;:::,,,,,,,;;;;EEKWWWWWWWWKWKKKKKKKKKKKKKKKWKKKKKKKKKKWKKWWWW#WW#KKKKKKii;;;;f;.............:tDEEEEEKKKKKKKKEti;;;L...............................EEKf;:iKKE::::::E::::::::::::::ifDDDDDDDDD *\n\t *fjt: :::,,,,,,,,;;;DEEWWWWWWWWWEKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####KKKKKEiii;;;;f,.........iDEEEEKKKKKKKKKKKKKKKf;iG......i..........................fK::::KKE::::::E::::::::::::::::,tGGDDDDD *\n\t *fjt: t:::,,,,,,;;;;iDEKWWWWWWKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####WKKKKLiii;;;;;L,....,Li;EDEEEEKKKKKKKKKKKKKKKKiG......;:...........................:i:::KKE:::::,E,::::::::::::::::::iGDDDD *\n\t *jjt. f::,,,,,,,;;;;GEEWWWWKEEKEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKWWWWW###WWKKKKiii;;;;;;;G,;L;;iiEEEEEEEKKKKKKKKKKKKKWWKE......;t.........:....................j::KEE:,::,,D,,::::,,,,,,:::::::::tDDD *\n\t *fjt:. ,::,,,,,,,;;;;EEWWKEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKKWWWWW#W#KKKKKKiiiiii;;;;;i;;iiiEEKEEKKWKKKKKKKWKKKKKWWWGi;...;t......,;;;;,....................:,EEE,,,,,,D,,,,,,,,,,,,,,,,::,::::tG *\n\t *fjt:. ,::,,,,,,,;;;;DEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWW#W#KKKKKKiiiii;;i;;;;;iiiKKKEKKKKWWKWWWWWWKKKKWWWWW;;;:;L.....;;;;;;;;;....................,KEE,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,; *\n\t *fjt:. f:,,,,,,,;;;;jEDEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWW#W##KKKKKKiiiiiiii;i;;iiiEKKKKKKKKWKWWWWWWWWKKKWWWWWKi;;i.....,jEEfGi;;;;;...................EED,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,, *\n\t *fjt:. .f::,,,,,,;;jEEDEEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWKWWWWW###KKKKKLiiiiiiiiiiiiiiEEKKKKKKKKWWWWWWWWWWWWKWWWWWWGi;i;,..;jDDDKEGi;;;;;;:................EED,,,,,,D,,,,,,,,,,,,,,,,,,,,,,,,, *\n\t *fjt:. .. ;::,,,,,;;EDDEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKW#WW####KWKKKiiiiiiiiiiiiijKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWt;i;;;;i;DDDDDDGi;;;;;;;;:.............EDf;,,,;,G;;;;;;;;;;;;;;;,,,,,,,,,, *\n\t *fjt:......:,,,,,,;LDDDEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWWKWWWW####KKKKKiiiiiiiiiiijKEKKWKKKKKKKWWWWWWWWWWWWWWWWWWWWWWiLiii;i;DEEEEDDE;i;;;;;;;;;:..........EDi,;;;;;L;;;;;;;;;;;;;;;;;;,,,,,,, *\n\t *fjt:......:,,,,,;EDDDEEKEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKWWWWKKWWW##W#KWKKWEiiiiiijGKKKKKWWKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKi;iiiiDDEEEEEEDEi;;;;;;;;;;;;;,:.....ED;;;;;;;j;;;;;;;;;;;;;;;;;;;;;;;,, *\n\t *fjt:.....t,,,,,;DDDDEEEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKWWWW##WKWKKWKiiiKKKKKKKKKWWKKKKKKKKWWWWWWWWWWWWWWW#WWWWWWWWWiiiiifLEEEEEEEEDi;i;;;;;;;;;;;;.....DD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; *\n\t *fjt:.....G,,,,,GDDDEEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKKWWWKKKWWW###WKWKKWKitKKKKKKKKKWKKKKKKKKKKWWWWWWWWWWWWWW###WWWWWWWWEiiiiiiiEEEEEEEEDGiiii;;;;;;;;;.....GD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; *\n\t *fjt:.....L,,,,;GDDDEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWDGWWW###KKWWKWKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWW####WWWWWWWWWiiiiiiiiEEEEEEEEEEDi;i;;;;;;;;.....Lj;;;;;;i;iiiiii;;;;;;ii;;;;;;;;;;; *\n\t ***********************************************************************************************************************************************************************************************************/\n\n\t\t\n}", "Main", "static Scanner inp= new Scanner(System.in);", "inp", "new Scanner(System.in)", "static PrintWriter out= new PrintWriter(System.out);", "out", "new PrintWriter(System.out)", "public static void main(String args[]) {\t\t \t\n\t \t\n\t\tMain g=new Main();\n\t\tg.main();\n\t\tout.close();\n\t\t\n\t}", "main", "{\t\t \t\n\t \t\n\t\tMain g=new Main();\n\t\tg.main();\n\t\tout.close();\n\t\t\n\t}", "Main g=new Main();", "g", "new Main()", "g.main()", "g.main", "g", "out.close()", "out.close", "out", "String args[]", "args", "void main() {\n\t\t\n\t\tint x=inp.nextInt();\n\t\tout.println(x==1?0:1);\n\t\t\n\t}", "main", "{\n\t\t\n\t\tint x=inp.nextInt();\n\t\tout.println(x==1?0:1);\n\t\t\n\t}", "int x=inp.nextInt();", "x", "inp.nextInt()", "inp.nextInt", "inp", "out.println(x==1?0:1)", "out.println", "out", "x==1?0:1", "x==1", "x", "1", "0", "1", "public class Main {\n\n\tstatic Scanner inp= new Scanner(System.in);\n\tstatic PrintWriter out= new PrintWriter(System.out);\n\tpublic static void main(String args[]) {\t\t \t\n\t \t\n\t\tMain g=new Main();\n\t\tg.main();\n\t\tout.close();\n\t\t\n\t}\n\t\n\t\n\t\n\tvoid main() {\n\t\t\n\t\tint x=inp.nextInt();\n\t\tout.println(x==1?0:1);\n\t\t\n\t}\n\t\n\t\n\t\n\t\n\t/*********************************************************************************************************************************************************************************************************\n\t * ti;. .:,:i: :,;;itt;. fDDEDDEEEEEEKEEEEEKEEEEEEEEEEEEEEEEE###WKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWW#WWWWWKKKKKEE :,:. f::::. .,ijLGDDDDDDDEEEEEEE*\n\t *ti;. .:,:i: .:,;itt;: GLDEEGEEEEEEEEEEEEEEEEEEDEEEEEEEEEEE#W#WEKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKKKKKKG. .::. f:,...,ijLGDDDDDDDDEEEEEE *\n\t *ti;. .:,:i: :,;;iti, :fDDEEEEEEEEEEEEEEEKEEEEDEEEEEEEEEEEW##WEEEKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWWKKKKKKEG .::. .f,::,ijLGDDDDDDDDEEEEEE *\n\t *ti;. .:,:i: .,,;iti;. LDDEEEEEEEEEEKEEEEWEEEDDEEEEEEEEEEE#WWWEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWKKKKKEDj .::. .:L;;ijfGDDDDDDDDDEEEEE *\n\t *ti;. .:,:i: .:,;;iii:LLDEEEEEEEEEEEKEEEEEEEEDEEEEEEEEEEEW#WWEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWKWWWWWWWWWWWWWWKKKKKKKEL .::. .:;LijLGGDDDDDDDDEEEEE *\n\t *ti;. .:,:;: :,;;ittfDEEEEEEEEEEEEEEEEKEEEGEEEEEEEEEEEKWWWEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWKKKKKKKELj .::. :,;jffGGDDDDDDDDDEEEE *\n\t *ti;. .:,:i: .,;;tGGDEEEEEEEEEEEKEEEKEEEDEEEEEEEEEEEEWWWEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWKWWWWWWKKKKKKKEEL .::. .:;itDGGDDDDDDDDDEEEE *\n\t *ti;. .:::;: :;ifDEEEEEEEEEEEEKEEEKEEEEEEEEEEEEEEEWWWEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WWWKKKKKKKKEEf .::. :,itfGEDDDDDDDDDDDEE *\n\t *ti;. .:::;: :GGEEEEEEEEEEEKEKEEKEEEEEEEEEEEEEEEEWWEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKKEEDG .::. .,;jfLGKDLDDDDDDEEDD *\n\t *ti;. .:::;: fDEEEEEEKKKKKKKKKEKEEEEEEEEEEEEEEE#WEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#KKKKKKKKKKEEf .:::. .,;tfLGDEDDDDDDDDEEE *\n\t *ti;. :::;: fDEEEEEEKKKKKKKKKKWKEEEEEEEEEEEEEEEWKEEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKKKEEft :::. .,;tfLGDDDKDDDDDDDDD *\n\t *ti;. .::;: fDEEEEEEKKKKKKKWKKKKKEEEEEEEEEEEEE#WEEWEEEEEDEEDEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKEEGG :,:. .,;tfLGGDDDKDDDDDDDD *\n\t *ti;. .:.;: tGDEEEEKKKKKKKKKKKKKKKKKEEEEEEEEEEEWEEKWEEEEEEEDEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKKKKKEEDf :::. .,;tfLGGDDDDEDDDDDDD *\n\t *ti;. .::;: fDEEEEEKKKKKKKKKKKWKKKKKKKKEEEEEEEWWEEWEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKEEEft.::. .,;tfLGGDDDDDDEDDDDD *\n\t *ti;. .:.;: tGDEEEKKKKKKKKKKKKKKKKKKKKKKEKEEEEE#EEWWEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKEEEGD:::. .,;tfLGGDDDDDDDEDDDD *\n\t *ti;. .:.,. LDEEEEKKKKKKKKKKWKWKKKKKKKKKKKKEEEKWEKW#EEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKW##KKKKKKEEEEf,,:. .,;tfLGGDDDDDDDDEDDD *\n\t *ti;. ..:.,. LGDEEEEKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEEW#WEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKK##KKKKKEEEEEfi;,. .,;tfLGGDDDDDDDDDKDD *\n\t *tt;. .:.,: jDEEEEKKKKKKKKKKWWKKKKKKKKKKKKKKKKKWKE#WWEEEEEEEEEEEEEEWEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKWWKKKKEEEEDfG;,: .,;tfLGGDDDDDDDDDDKD *\n\t *tii,. .:.,. tGDEEEEKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKKWWWKEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKW#KKKKEEEEDGGi;,. .,;tfLGGDDDDDDDDDDDE *\n\t *ti;;,:. .:.,: fDEEEEKKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEK#WWKEEEEEEEEEEEEDEEEEEEEEEEEEEEGEEEEEEEEEEEEEEEEEEEKKKKKKKWWKKEEEEEEDDf;;;,. .,;tfLGGDDDDDDDDDDDD *\n\t *tii;,,:.. ...,. ;LEEEEEKKKKKKWKKKKWKKKKKKKKKKKKKKKKKEKKW#WEEEEEEEEEEEEEjEEEEEEEEEKEEEEGEEEEEEEEEKEEEEEEEEEEEEEEEEE#WKEEEEEEDDf;;;;,: .,itfLGGDDDDDDDDDDDD *\n\t *ti;,,,,,:. ...,. LDEEEEKKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKK#W#WEEEEEEEEEEEDDLEEEEEEEEEWEEEEDEEEEEEEEEKEEEEEEEEEEEEEEEEEWWEEEEEEEDDfj,,,,,:. .,itfGGGDDDDDDDDDDDD *\n\t *tii,,,,::::. ...,: .fDEEEEKKKKKKWKKKKWWWKKKKKKKKKKKKKKKEKKW#WWEEEEEEEEEEEKiKEEKEEEEEEWEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEEWWEEEEEEEDDLD:::,,,:. .,ijfGGGDDDDDDDDDDDD *\n\t *ti;:::::::::.. .:.,: LDEEEEKKKKKKKWKKKKWWKKKKKKKKKKKKKKKKtKKWWWWKEEEEEEEEEDiiDEEEEEEEEWWEEEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEWKEEEEEDDDGL:. .:,,,: .,ijLGGGDDDDDDDDDDDD *\n\t *tt;. .::::::::.. ...,: :fDEEEKKKKKKKKKKKKWW#KKKKKKKKKKKKKKKKfKKWWWWKEEEEEEEEDti,DEKEEEEEEWWEEEDEEEEEEEEEKEEEEEEEEEEEEEDEEEEE#WEEEEEGGDGf:. .:,;,:. .,ijLGGDDDDDDDDDDDDD *\n\t *tt;. .:::::::.. ...,: GDEEEKKKKKKKKWKKKKWWWKKKWKKKKKKKWWWKDEKLWWWWKKEEEEEEDEi,LDEEEEEEEEWWEEEEEEEEEEEEEEEEEEEEEEEEEDEDEEEEEW#EEEEDDDDGf,. :,,,:...,ijLGGGDDDDDDDDDDDD *\n\t *tt;. .....::::.. ...,: fDEEEKKKKKKKKWKKKKWWWWKKKWKKKKKKKKKKfWKiWWW#KKEEEEEEEi;.EDfEEEDEEiWWEEEEEEEEEEEEDGKEEEEEEEEEEDEEEEEEEWWEEEEDDDGGLi. .,;,:::,ijLGGGDDDDDDDDDDDD *\n\t *tt;. ....:::::. ...,. iDEEEEKKKKKKKKWKKWKWWWWWKKWWWKKKKKKKKtWKt#WWWKKEEEEEDji..DDKDDEDEGiWKEEEEEEEEEEDDEjEEEEEEEEEEEDEEEEEEEKWKEEDDDDGGff. .:,;,,;ijLGGGDDDDDDDDDDDD *\n\t *tt;. ....::::.. .:.,: .LDEEEKKKKKKKKKKKKWWWWKWWWWWWWWWWKKKKWtKKiDWWWKKKEEEEKi:..DEDDDDDDiiWKEEEEEEEEEEDDEijDEEEEEKEEEEEEEEEEEEWWEEGDDDGGLG. .:,;;iijLGGGDDDDDDDDDDDD *\n\t *tt;. .....:::.. ...,. .fEEEEKKKKKKKKWKKKKWWWWWWWWWWWWWWKWKKKiKDiLWWWWKEEEEEi,..fD:DDDDDti;WEEEEEEEEEEKDDi:iDDEEEEWEEEEEEEEEEEE#WEEGDDDDGGG. :,iitjLGGGDDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. GDEEEKKKKKKKKKWKKKWWW#WWWWWWWWWWWKWKKjiEjitWWWKKWEEEDi...DDLDDDDji;;WEEEEEEEEEEEDEj.iDDEEEEWEEEEEEEEEEEEWWEEDDDDDDGf. .,;tjfLGGDDDDDDDDDDDD *\n\t *tti. ....::::.. ...,. fEEEKKKKKKKKKKKKKKKW#WWWWWWWWWWWWWWWWtiEiiiWWWKKEWKEi....D.EDDDEi;.fWEEEEEEEEEEDDfL.;EDDEEEWEEEEEEEEEEEEWWEEEDDDDDGf. :;ijfLGGDDDDDDDDDDDD *\n\t *tti. ....::::.. ...,. LDEEEKKKKKKKKKKKKKKWWWWWWWWWWWWWWWW####WKiiiWWWKKKEEK,...:E:DDDEii..GWEEEEEEEEDWDDiL.,KDDEEEWEEEEEEEEEEEEWWKEEDDDDDGf: .,itfLGGDDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. fDEEEKKKKKKKKKWKKKKWWWWWWWWWWWWW########WLiiWWWKKKEEjD...G,DDDDi;...EWEEEEEEEEDKDEii..LDDEEEWEEEEEEEEEEEEWWWEEDDDDDGfi .,;tfLGGGDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. iGEEEKKKKKKKKKKWKKKKWWWWWWWWWWWW###########KiWWWKKEEE,.D..D.DDDii:...KKEEEEEEEEEDDj:...tEDEEEWEEEEEEEEEEEEWWWEEEDDDDDLL .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....::::......:. LEEEKKKKKKKKKKWWKKKWWW#KWWWWWWWW#####W####W##KWWKKEEL..:D.jjDDi;,....KKEEEEEEEDfDDi...:iKDEEEWKEEEEEEEEEEEWWWEEEEDDDDLG .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ...::::::..,. :GEEEKKKKKKKKKKKKWWWWW##WWWWWWWWW##WKWK#W#W####WWKEEK.....G.DDti,.....KKEEEEEEDWGDf.,...iKDEEEWWEEEEEEEEEEEW#WEEEEEDDDGL .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....::::::,. GDEEKKKKKKKKKKKKKWWWW###WWWWWWWWWW#WWWK###W#####WKEKK.....jDDL;;......KKEEEEEEEEEDi.f...;KDEEEWWEEEEEEEEEEEWWWWEEEEEDDGf .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....:::,,. .LEEEKKKKKWKKKKKWWWWWW###WWWWWWWWWW#WWKW#WW##W#WWWKEKD:....:DD:;......;KEEEEEEEKiDD..f...,KKEEEWWEEEEEEEEEEEWWWWEEEEEDDDf .:;tjLLGGGDDDDDDDDDD *\n\t *tti. ...::,,,:. GDEEKKKKKKKKKKKKWWWWWWW#WWWWWWWWWWW#KjKWWWWWWWWWWWWEK.j,..;fD.;.......fKEEEEEDKG:Di..,....DKEEEWWEEEEEEKEKKKWWWWEEEEEEDDf .:;tjLLGGDDDDDDDDDDD *\n\t *jti. ...::,,,,:. .fEEEKKKKKWKKKKKKWWWWWWW#WWWWWWWWWWK#KKKWWWWWWWWWWWWWK..f:.:G.,:.......EKEEEEEKK;:E:.......fKEEEWWKEKEKKKKKKKW#WWEEEEEEDDf: .,;tfLLGGDDDDDDDDDDD *\n\t *tti. ...:,,,;;,: iDEEKKKKKWKKKKKKKWWWWWWW#WWWWWWWWWWK#WDKWWKKWWWWWWWWWE..;G:G..,........KKEEEEEKi.Gi..:.....tKEEKWWWKKKKKKKKKKW##WKEEEEEEDfi .,;tfLLGGGDDDDDDDDDD *\n\t *tti. ....::,,;;;,LEEKKKKKKWKKKKKWWWWWWW###WWWWWWWWWWKWWDKWEEEWKKWWWWWKKj.:LG..;.........EKEEEEKG;.G...;.....;KKEKWWWKKKKKKKKKKW##WWKEEEEEDfL .,;tfLGGGDDDDDDDDDDD *\n\t *jti. ...::::,;ijDEEKKKKKWKKKKKKWKWWWWW##WWWWWWWWWWWKK#KKGDGDWEEWKKWKKGE,.i;.:.........:EKEEEKE;.:L...j.....,KWEKWWWKKKKKKKKKK####WKKEEEEDLG .,;tfLGGGGDDDDDDDDDD *\n\t *jti. ...:...,,;GEEKKKKKWWKKKKKWWWWWWWW###WWWWWWWWWKKKWWKiLGGEDEDEKGKKiEG..;...........jKEEEKK;:.G....,.....:KKEWWWWKKKKKKKWKK####WKKKKEEEGL .,;tfLGGGGDDDDDDDDDD *\n\t *jti. ...:. .:,GEEKKKKKWKKKKKWWWWWWWW####WWWWWWWWWKKKWWKii;fDLGDK: EEi:E:.............EKEEKK;;..L...........KKKWWWWKKKKKKKWKK####WKKKWKEEDf .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. ,EEKKKKKWWKKKKKWWWWWWWWW###WWWWWWWWKKKKfWWLt;i,. fi EG..D:.............EKEKK;;..t....:.......KWKWWWWKKKKKKKWKK####WKKKWEEEDf:. .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. GEEKKKKKWKKKKKWWWWWWWWW####WWWWWWWKKKKKt;KKEfff .;t.................KKKKi;:..GtGGfG.......KWWWWWWKKKKKKKWKK###WWWKKKKEEEf,,: .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. GEKKKKKWWKKKKKWWWWWWWWWW##WWWWWWWKKKKKKt;EiKKKK, ...t................jEKKG;;..,.....,LGi....KWWWWWWKKKKKKWKKKW####WKKKKKEEL,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. .GEEKKKKKWKKKKKWWWWWWWWWW###WWWWWWWKKKKKKtiE::tGG........................EEEj;;...,.........:D..DKWWWWWWKKKKK#KKW###W#WKKKKKEEfj:,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. DEKKKKKWWKKKKKWWWWWWWWW####WWWWWWWKKKKKKiiE:::.::.......................EEi;;...j.....f......:iDKWWWWWWKKKKK#WW######WKKKKKEELG :,,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. fEEKKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKK;tE::..........................DD;.;,.::......;........EWWWWWWWKKKKW#WW#####WWKKKWKKELG .:,,,:::,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. .DEKEKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKE,iD::..........................D..,;.,;tLffi...........DWDWWWW#KKKWWWWW#####W#KKKWKEEGL .:,;,,,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. ;EEKKKKWWKKKKKWWWWWW#WWWW####WWWWWWKKKKKEL:iD:..........................j ..;..;;:.....i,........DKtWWWWWKKWWWWWW#####WWWKKKEKEDf .:,;;;itfGGGDDDDDDDDDDDD *\n\t *jti. ...:. DEKKKKKWWKKKKWWWWWWW#WWWW####WWWWWWKKKKKEj:iG...............................:....................GKiWWWWWKKWW#WWW######WWKKKKKEEf .,;iitfGGGDDDDDDDDDDDD *\n\t *jti. ...:.:EKKKKKWWKKKKKWWWWWWW#WWW#####WWWWWKWKKKKEi:if:.................................iEKEKKKKKKDj......DKiWWWWWKWK##WW#######WWKKK:KEEL .:;itfGGGDDDDDDDDDDDD *\n\t *jji. ...:,DEEKKKWWWKWKKWWWWWWWWWWWW#####WWWWWWWKKKKEi:it..................................j. KKKKKKKKKKKf..DKiWWWWWKWW##WW#######WWKKK,KEEf .,;tfGGGDDDDDDDDDDDD *\n\t *jji. ..L:iDEEKKKWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKKi.i;.................................. . KKKWWWWWWWWK..DGiWWWWWKK##WWW#####W#WWKKKjEKEL, .:;tfGGGDDDDDDDDDDDD *\n\t *jji. .f:::EEEKKKWWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKK;.i,.................................:: KKEKWWWWWWfWK..EiiWWWWWKWW#WW##########KKKD,KELj .:;tfGGDDDDDDDDDDDDD *\n\t *jji. .t::::,DEEKKKWWKKKKWWWWWWWWW#WWWW#####WWWWKKWKKKEK;.i:.................................GDDEEEKKKWWWWWtWWD.E;iWWWWWW###WW#########WWKKK.EEDG .:;tfGGGDDDDDDDDDDDD *\n\t *jji. . j..::::EKEKKKWWWKKKKWWWWWWWWW#WWW######WWWWKKWKKKEK;.t:.................................ELLEDDEEEWWWWEtWK,.KiiWWWWWW###W##########WWKKK:EEEG .;tjfLLGDDDDDDDDDDDDDDD *\n\t *jji. i.::::::,EEEKKWWWKKKKKWWWWWWWWW#WWW#####WWWWWKWKKKKEE,.t..................................DfiEGDDDEEKKKttKWG.KiiWWWWW##WWW##########WWKKK:fEEL ,fGGGDDDDDDDDEEEDDDDDDDDDD *\n\t *jji. .;:..:::::DEEEKKWWWKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKED,.t..................................ifjDDGGEGDKK.ttKKE.DiWWWWW###WW##########WWWKKK:.KELiLGGGGDDDDDDDDDDDDEEEDDDDDDD *\n\t *jji. i.:.::::::,KEEKKWWWKKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKEL:.j..................................GGf,;ifLLED .iiKKi:fWWWWWW##W#W##########WWWKKK:.KKLGGDDDDDDDDDDDDDDDDEDDEEDDDDD *\n\t *jji. .j:.::::::::EEEKKKWWWKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKf:.f..................................:EEfftf .,. ;iE,..jWWWWWWW###W############WWKKK,:KKGDDDDDDDDDDDDDDDDDDDDDDDEDDDD *\n\t *jji. .:.::::::::,,EEEKKWWWKKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKt..G....................................EEELL; .j....tKWWWWWWW################WWWKKtfGKGEDDDDDDDDDDDDDDDDDDDDDDDEEDD *\n\t *jji. :...:::::::,,jEEKKWWWWKKKKKKWWWWWWWWW##KWW#####KWWWWWWKKKKEi..D....................................:jEEE.........;KKWWWWWWWW#WW##W##########WWKKDLGKEKDDDDDDDDDDDDDDDDDDDDDDDDDED *\n\t *jji. i:.::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWW##WWW#####WWWWWWWKKKKKi..D......................................:::::......,KKKWWWWWWWWW#####W########WWWKKKGGKKEGGGGGGGGDDDDDDDDDDDDDDDDDDE *\n\t *jji. i..:::::::::,,tEEKKWWWWKKKKKWWWWWWWWWWW##WW######WWWWWWWKKKKKi..D......................................::::......:EKKKWWWWWWWWWWW##WW########W#WKKWGGKKGGGGGGGGGGGGGGGDDDDDDDDDDDDD *\n\t *jji. .:::::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWWW##WW#####WWWWWWWWKKKKKi..D....................................:::::::::..tELii;KWWWWWWWWWW##WW######WWWWWWKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGDG *\n\t *jjt. :.::::::::,,,,fEEKKWWWWKKKKKKWWWWWWWWWW###WW####WWWWWWW#WKKKKKi..D....................................:::::::.:.,;;;;;;,KKWWWWWWWWW#WW########WWWKKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGGG *\n\t *jji. ;.::::::::,,,,;EEEKWWWWWKKKKKWWWWWWWWWWWW##WW###WKWWWWWK#WKKKKKi..G......................................:::::::,;;;;:...KKKWWWWWWWWWKWW#######WWWWKKGLGKDGGGGGGLLGGGGGGGGGGGGGGGGGGG *\n\t *jjt. f.:::::::::,,,,fEEKKWWWWWKKKKKWWWWWWWWWWW###WW##WKKWWWWWW#WKKKKK;.jt........i.............................:::::::;j;;....:E.KKKWWWWWWWKWW#####W#WWWWKKLLGWEEGGGGGLGGGGGGGGGGGGGGGGGGGG *\n\t *jjt. ...:::::::,,,,,;DEEKWWWWWKKKKKWWWWWWWWWWWW####WWWKKKWWWWWWWWKKKKK;.E;.........t.............................:::::ii;;.....D...KKWWWWWWWKWW#####WWEWWWKKGGGEKKGGGGGLGGGGGGGGGGGGGLGGGGGG *\n\t *fji. ;.:::::::,,,,,;LEEKKWWWWWKKKKKWWWWWWWWWWWW####KWKKKKWWWWWWWWKKKKKi.D;..........j.............................:::tt;,.....:.....KKWWWWWWKWWWW##WWWGWWWKKGGGGKEGGGGGGGGGGGGGGGGGGGLLGGGGL *\n\t *fji. t::::::::,,,,,,;EEEKWWWWWKKKKKKKWWWWWWWWWWW##WKWKKKKKWWWWWWWWKKKKKi:D;............j...........................::LL;,.............KKWWWWWKWWWWWWWWWGWWWKKGGGGKGGGGGGGGGGGGGGGGGGGGLLGGGGL *\n\t *fjt: .:::::::,,,,,,,DEEKWWWWWWKKKKKKKWWWWWWWWWWWWKKWKKKKKKWWWWK#WWKKKKWitE;........... ............................:G;;:...............KKKWWKKWWWWWWWWWGWWWKKGGGGWGGGGGGGGGGGGGGGGGGGGGGGGGGL *\n\t *fjji;:. .f:::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWWKKKKKKKKKKKWWKWWWWWKKKKWGKD;........................................L;;..................DKKWKKWWWWWWWWWGWWWKKDGGGKDGGGGGGGGGGGGGGGGGGGGGGGGGG *\n\t *fjjtii;,:. :::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWKKKKKKKKKKKKWWWWWW#WWKKKKWiEj;......................................:i,;....,...............;KKEKWWWWWWWWWGKWWKKDDGGDEGGGDGGGGGDGGGGGGGGGGGGGGGG *\n\t *fjtiiiii;;:. j::::::,,,,,,,;;EEEKWWWWW#KKKKKWWWWWWWWWKKKKKKWKKKKKKKWWWWWWWWWKKKKWtEL;:....................................;;;:...,;j................:KEEWWWWWWWWWDDWWKKDDDDDKDDDDDDDDDDDDDDDGGGGGGGGGGG *\n\t *fjti;;iiii;;,:::::::,,,,,,,,;EEEKWWWWWWWKKKKWWWWWWWWKKKKKKKWKKKKKKKWWWWWWW#W#KKKKWEEii;...................................f;:....,;L...................EEKWWWWWWWWDDWWKKDDDDDKEDDDDDDDDDDDDDDDDDDDDDGGGG *\n\t *fjt,,,;;;;ii;f::::::,,,,,,,;;EEKWWWWWWWKKKKKWWWKWWKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWKEij;:...............................:G;,.....,;f....................:tKKWWWWWWWDDWWKKDDDDDKKDDDDDDDDDDDDDDDDDDDDDDDDD *\n\t *jjt. ..:,;;;;,::::,,,,,,,,;;GEEWWWWWWWWKKKKWKKWKKKKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWEDi;j;............................,Li;L;;;..,;;f........................KKKKWWWKDDWWKKDDDGDKKGGGGGGGGDGDDDDDDDDDDDDDDD *\n\t *fjt. .:,,,:::::,,,,,,,;;;EEKWWWWWWWKKKKKKWKKKKKKKKKKKKKKKKKKKKKWKKKWKW##W#KKKKWEti;;G;........................tEEEL;;;;;;;;;;L..........................DKKKKKEDDWWKEDGftiLE;;;;itjLGGGGGGDDDDDDDDDDD *\n\t *fjt. .j::::,,,,,,,;;;DEEWWWWWWWWKKKKWKKKKKKKKKKKKKKKKKKKKKKKWKKWWWK##W#KKKKKEii;;;L;...................iDEEEEEEKKi;j;;;;jD.....:......................,KKKKDGGEKKE:::::;E::::::::::,tLGGDDDDDDDDDD *\n\t *fjt. .;:::,,,,,,,;;;;EEKWWWWWWWWKWKKKKKKKKKKKKKKKWKKKKKKKKKKWKKWWWW#WW#KKKKKKii;;;;f;.............:tDEEEEEKKKKKKKKEti;;;L...............................EEKf;:iKKE::::::E::::::::::::::ifDDDDDDDDD *\n\t *fjt: :::,,,,,,,,;;;DEEWWWWWWWWWEKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####KKKKKEiii;;;;f,.........iDEEEEKKKKKKKKKKKKKKKf;iG......i..........................fK::::KKE::::::E::::::::::::::::,tGGDDDDD *\n\t *fjt: t:::,,,,,,;;;;iDEKWWWWWWKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####WKKKKLiii;;;;;L,....,Li;EDEEEEKKKKKKKKKKKKKKKKiG......;:...........................:i:::KKE:::::,E,::::::::::::::::::iGDDDD *\n\t *jjt. f::,,,,,,,;;;;GEEWWWWKEEKEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKWWWWW###WWKKKKiii;;;;;;;G,;L;;iiEEEEEEEKKKKKKKKKKKKKWWKE......;t.........:....................j::KEE:,::,,D,,::::,,,,,,:::::::::tDDD *\n\t *fjt:. ,::,,,,,,,;;;;EEWWKEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKKWWWWW#W#KKKKKKiiiiii;;;;;i;;iiiEEKEEKKWKKKKKKKWKKKKKWWWGi;...;t......,;;;;,....................:,EEE,,,,,,D,,,,,,,,,,,,,,,,::,::::tG *\n\t *fjt:. ,::,,,,,,,;;;;DEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWW#W#KKKKKKiiiii;;i;;;;;iiiKKKEKKKKWWKWWWWWWKKKKWWWWW;;;:;L.....;;;;;;;;;....................,KEE,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,; *\n\t *fjt:. f:,,,,,,,;;;;jEDEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWW#W##KKKKKKiiiiiiii;i;;iiiEKKKKKKKKWKWWWWWWWWKKKWWWWWKi;;i.....,jEEfGi;;;;;...................EED,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,, *\n\t *fjt:. .f::,,,,,,;;jEEDEEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWKWWWWW###KKKKKLiiiiiiiiiiiiiiEEKKKKKKKKWWWWWWWWWWWWKWWWWWWGi;i;,..;jDDDKEGi;;;;;;:................EED,,,,,,D,,,,,,,,,,,,,,,,,,,,,,,,, *\n\t *fjt:. .. ;::,,,,,;;EDDEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKW#WW####KWKKKiiiiiiiiiiiiijKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWt;i;;;;i;DDDDDDGi;;;;;;;;:.............EDf;,,,;,G;;;;;;;;;;;;;;;,,,,,,,,,, *\n\t *fjt:......:,,,,,,;LDDDEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWWKWWWW####KKKKKiiiiiiiiiiijKEKKWKKKKKKKWWWWWWWWWWWWWWWWWWWWWWiLiii;i;DEEEEDDE;i;;;;;;;;;:..........EDi,;;;;;L;;;;;;;;;;;;;;;;;;,,,,,,, *\n\t *fjt:......:,,,,,;EDDDEEKEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKWWWWKKWWW##W#KWKKWEiiiiiijGKKKKKWWKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKi;iiiiDDEEEEEEDEi;;;;;;;;;;;;;,:.....ED;;;;;;;j;;;;;;;;;;;;;;;;;;;;;;;,, *\n\t *fjt:.....t,,,,,;DDDDEEEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKWWWW##WKWKKWKiiiKKKKKKKKKWWKKKKKKKKWWWWWWWWWWWWWWW#WWWWWWWWWiiiiifLEEEEEEEEDi;i;;;;;;;;;;;;.....DD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; *\n\t *fjt:.....G,,,,,GDDDEEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKKWWWKKKWWW###WKWKKWKitKKKKKKKKKWKKKKKKKKKKWWWWWWWWWWWWWW###WWWWWWWWEiiiiiiiEEEEEEEEDGiiii;;;;;;;;;.....GD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; *\n\t *fjt:.....L,,,,;GDDDEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWDGWWW###KKWWKWKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWW####WWWWWWWWWiiiiiiiiEEEEEEEEEEDi;i;;;;;;;;.....Lj;;;;;;i;iiiiii;;;;;;ii;;;;;;;;;;; *\n\t ***********************************************************************************************************************************************************************************************************/\n\n\t\t\n}", "public class Main {\n\n\tstatic Scanner inp= new Scanner(System.in);\n\tstatic PrintWriter out= new PrintWriter(System.out);\n\tpublic static void main(String args[]) {\t\t \t\n\t \t\n\t\tMain g=new Main();\n\t\tg.main();\n\t\tout.close();\n\t\t\n\t}\n\t\n\t\n\t\n\tvoid main() {\n\t\t\n\t\tint x=inp.nextInt();\n\t\tout.println(x==1?0:1);\n\t\t\n\t}\n\t\n\t\n\t\n\t\n\t/*********************************************************************************************************************************************************************************************************\n\t * ti;. .:,:i: :,;;itt;. fDDEDDEEEEEEKEEEEEKEEEEEEEEEEEEEEEEE###WKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWW#WWWWWKKKKKEE :,:. f::::. .,ijLGDDDDDDDEEEEEEE*\n\t *ti;. .:,:i: .:,;itt;: GLDEEGEEEEEEEEEEEEEEEEEEDEEEEEEEEEEE#W#WEKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKKKKKKG. .::. f:,...,ijLGDDDDDDDDEEEEEE *\n\t *ti;. .:,:i: :,;;iti, :fDDEEEEEEEEEEEEEEEKEEEEDEEEEEEEEEEEW##WEEEKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWWKKKKKKEG .::. .f,::,ijLGDDDDDDDDEEEEEE *\n\t *ti;. .:,:i: .,,;iti;. LDDEEEEEEEEEEKEEEEWEEEDDEEEEEEEEEEE#WWWEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWKKKKKEDj .::. .:L;;ijfGDDDDDDDDDEEEEE *\n\t *ti;. .:,:i: .:,;;iii:LLDEEEEEEEEEEEKEEEEEEEEDEEEEEEEEEEEW#WWEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWKWWWWWWWWWWWWWWKKKKKKKEL .::. .:;LijLGGDDDDDDDDEEEEE *\n\t *ti;. .:,:;: :,;;ittfDEEEEEEEEEEEEEEEEKEEEGEEEEEEEEEEEKWWWEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWKKKKKKKELj .::. :,;jffGGDDDDDDDDDEEEE *\n\t *ti;. .:,:i: .,;;tGGDEEEEEEEEEEEKEEEKEEEDEEEEEEEEEEEEWWWEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWKWWWWWWKKKKKKKEEL .::. .:;itDGGDDDDDDDDDEEEE *\n\t *ti;. .:::;: :;ifDEEEEEEEEEEEEKEEEKEEEEEEEEEEEEEEEWWWEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WWWKKKKKKKKEEf .::. :,itfGEDDDDDDDDDDDEE *\n\t *ti;. .:::;: :GGEEEEEEEEEEEKEKEEKEEEEEEEEEEEEEEEEWWEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKKEEDG .::. .,;jfLGKDLDDDDDDEEDD *\n\t *ti;. .:::;: fDEEEEEEKKKKKKKKKEKEEEEEEEEEEEEEEE#WEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#KKKKKKKKKKEEf .:::. .,;tfLGDEDDDDDDDDEEE *\n\t *ti;. :::;: fDEEEEEEKKKKKKKKKKWKEEEEEEEEEEEEEEEWKEEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKKKEEft :::. .,;tfLGDDDKDDDDDDDDD *\n\t *ti;. .::;: fDEEEEEEKKKKKKKWKKKKKEEEEEEEEEEEEE#WEEWEEEEEDEEDEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKEEGG :,:. .,;tfLGGDDDKDDDDDDDD *\n\t *ti;. .:.;: tGDEEEEKKKKKKKKKKKKKKKKKEEEEEEEEEEEWEEKWEEEEEEEDEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKKKKKEEDf :::. .,;tfLGGDDDDEDDDDDDD *\n\t *ti;. .::;: fDEEEEEKKKKKKKKKKKWKKKKKKKKEEEEEEEWWEEWEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKEEEft.::. .,;tfLGGDDDDDDEDDDDD *\n\t *ti;. .:.;: tGDEEEKKKKKKKKKKKKKKKKKKKKKKEKEEEEE#EEWWEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKEEEGD:::. .,;tfLGGDDDDDDDEDDDD *\n\t *ti;. .:.,. LDEEEEKKKKKKKKKKWKWKKKKKKKKKKKKEEEKWEKW#EEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKW##KKKKKKEEEEf,,:. .,;tfLGGDDDDDDDDEDDD *\n\t *ti;. ..:.,. LGDEEEEKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEEW#WEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKK##KKKKKEEEEEfi;,. .,;tfLGGDDDDDDDDDKDD *\n\t *tt;. .:.,: jDEEEEKKKKKKKKKKWWKKKKKKKKKKKKKKKKKWKE#WWEEEEEEEEEEEEEEWEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKWWKKKKEEEEDfG;,: .,;tfLGGDDDDDDDDDDKD *\n\t *tii,. .:.,. tGDEEEEKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKKWWWKEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKW#KKKKEEEEDGGi;,. .,;tfLGGDDDDDDDDDDDE *\n\t *ti;;,:. .:.,: fDEEEEKKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEK#WWKEEEEEEEEEEEEDEEEEEEEEEEEEEEGEEEEEEEEEEEEEEEEEEEKKKKKKKWWKKEEEEEEDDf;;;,. .,;tfLGGDDDDDDDDDDDD *\n\t *tii;,,:.. ...,. ;LEEEEEKKKKKKWKKKKWKKKKKKKKKKKKKKKKKEKKW#WEEEEEEEEEEEEEjEEEEEEEEEKEEEEGEEEEEEEEEKEEEEEEEEEEEEEEEEE#WKEEEEEEDDf;;;;,: .,itfLGGDDDDDDDDDDDD *\n\t *ti;,,,,,:. ...,. LDEEEEKKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKK#W#WEEEEEEEEEEEDDLEEEEEEEEEWEEEEDEEEEEEEEEKEEEEEEEEEEEEEEEEEWWEEEEEEEDDfj,,,,,:. .,itfGGGDDDDDDDDDDDD *\n\t *tii,,,,::::. ...,: .fDEEEEKKKKKKWKKKKWWWKKKKKKKKKKKKKKKEKKW#WWEEEEEEEEEEEKiKEEKEEEEEEWEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEEWWEEEEEEEDDLD:::,,,:. .,ijfGGGDDDDDDDDDDDD *\n\t *ti;:::::::::.. .:.,: LDEEEEKKKKKKKWKKKKWWKKKKKKKKKKKKKKKKtKKWWWWKEEEEEEEEEDiiDEEEEEEEEWWEEEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEWKEEEEEDDDGL:. .:,,,: .,ijLGGGDDDDDDDDDDDD *\n\t *tt;. .::::::::.. ...,: :fDEEEKKKKKKKKKKKKWW#KKKKKKKKKKKKKKKKfKKWWWWKEEEEEEEEDti,DEKEEEEEEWWEEEDEEEEEEEEEKEEEEEEEEEEEEEDEEEEE#WEEEEEGGDGf:. .:,;,:. .,ijLGGDDDDDDDDDDDDD *\n\t *tt;. .:::::::.. ...,: GDEEEKKKKKKKKWKKKKWWWKKKWKKKKKKKWWWKDEKLWWWWKKEEEEEEDEi,LDEEEEEEEEWWEEEEEEEEEEEEEEEEEEEEEEEEEDEDEEEEEW#EEEEDDDDGf,. :,,,:...,ijLGGGDDDDDDDDDDDD *\n\t *tt;. .....::::.. ...,: fDEEEKKKKKKKKWKKKKWWWWKKKWKKKKKKKKKKfWKiWWW#KKEEEEEEEi;.EDfEEEDEEiWWEEEEEEEEEEEEDGKEEEEEEEEEEDEEEEEEEWWEEEEDDDGGLi. .,;,:::,ijLGGGDDDDDDDDDDDD *\n\t *tt;. ....:::::. ...,. iDEEEEKKKKKKKKWKKWKWWWWWKKWWWKKKKKKKKtWKt#WWWKKEEEEEDji..DDKDDEDEGiWKEEEEEEEEEEDDEjEEEEEEEEEEEDEEEEEEEKWKEEDDDDGGff. .:,;,,;ijLGGGDDDDDDDDDDDD *\n\t *tt;. ....::::.. .:.,: .LDEEEKKKKKKKKKKKKWWWWKWWWWWWWWWWKKKKWtKKiDWWWKKKEEEEKi:..DEDDDDDDiiWKEEEEEEEEEEDDEijDEEEEEKEEEEEEEEEEEEWWEEGDDDGGLG. .:,;;iijLGGGDDDDDDDDDDDD *\n\t *tt;. .....:::.. ...,. .fEEEEKKKKKKKKWKKKKWWWWWWWWWWWWWWKWKKKiKDiLWWWWKEEEEEi,..fD:DDDDDti;WEEEEEEEEEEKDDi:iDDEEEEWEEEEEEEEEEEE#WEEGDDDDGGG. :,iitjLGGGDDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. GDEEEKKKKKKKKKWKKKWWW#WWWWWWWWWWWKWKKjiEjitWWWKKWEEEDi...DDLDDDDji;;WEEEEEEEEEEEDEj.iDDEEEEWEEEEEEEEEEEEWWEEDDDDDDGf. .,;tjfLGGDDDDDDDDDDDD *\n\t *tti. ....::::.. ...,. fEEEKKKKKKKKKKKKKKKW#WWWWWWWWWWWWWWWWtiEiiiWWWKKEWKEi....D.EDDDEi;.fWEEEEEEEEEEDDfL.;EDDEEEWEEEEEEEEEEEEWWEEEDDDDDGf. :;ijfLGGDDDDDDDDDDDD *\n\t *tti. ....::::.. ...,. LDEEEKKKKKKKKKKKKKKWWWWWWWWWWWWWWWW####WKiiiWWWKKKEEK,...:E:DDDEii..GWEEEEEEEEDWDDiL.,KDDEEEWEEEEEEEEEEEEWWKEEDDDDDGf: .,itfLGGDDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. fDEEEKKKKKKKKKWKKKKWWWWWWWWWWWWW########WLiiWWWKKKEEjD...G,DDDDi;...EWEEEEEEEEDKDEii..LDDEEEWEEEEEEEEEEEEWWWEEDDDDDGfi .,;tfLGGGDDDDDDDDDDD *\n\t *tti. .....:::.. ...,. iGEEEKKKKKKKKKKWKKKKWWWWWWWWWWWW###########KiWWWKKEEE,.D..D.DDDii:...KKEEEEEEEEEDDj:...tEDEEEWEEEEEEEEEEEEWWWEEEDDDDDLL .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....::::......:. LEEEKKKKKKKKKKWWKKKWWW#KWWWWWWWW#####W####W##KWWKKEEL..:D.jjDDi;,....KKEEEEEEEDfDDi...:iKDEEEWKEEEEEEEEEEEWWWEEEEDDDDLG .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ...::::::..,. :GEEEKKKKKKKKKKKKWWWWW##WWWWWWWWW##WKWK#W#W####WWKEEK.....G.DDti,.....KKEEEEEEDWGDf.,...iKDEEEWWEEEEEEEEEEEW#WEEEEEDDDGL .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....::::::,. GDEEKKKKKKKKKKKKKWWWW###WWWWWWWWWW#WWWK###W#####WKEKK.....jDDL;;......KKEEEEEEEEEDi.f...;KDEEEWWEEEEEEEEEEEWWWWEEEEEDDGf .,;tjLLGGDDDDDDDDDDD *\n\t *tti. ....:::,,. .LEEEKKKKKWKKKKKWWWWWW###WWWWWWWWWW#WWKW#WW##W#WWWKEKD:....:DD:;......;KEEEEEEEKiDD..f...,KKEEEWWEEEEEEEEEEEWWWWEEEEEDDDf .:;tjLLGGGDDDDDDDDDD *\n\t *tti. ...::,,,:. GDEEKKKKKKKKKKKKWWWWWWW#WWWWWWWWWWW#KjKWWWWWWWWWWWWEK.j,..;fD.;.......fKEEEEEDKG:Di..,....DKEEEWWEEEEEEKEKKKWWWWEEEEEEDDf .:;tjLLGGDDDDDDDDDDD *\n\t *jti. ...::,,,,:. .fEEEKKKKKWKKKKKKWWWWWWW#WWWWWWWWWWK#KKKWWWWWWWWWWWWWK..f:.:G.,:.......EKEEEEEKK;:E:.......fKEEEWWKEKEKKKKKKKW#WWEEEEEEDDf: .,;tfLLGGDDDDDDDDDDD *\n\t *tti. ...:,,,;;,: iDEEKKKKKWKKKKKKKWWWWWWW#WWWWWWWWWWK#WDKWWKKWWWWWWWWWE..;G:G..,........KKEEEEEKi.Gi..:.....tKEEKWWWKKKKKKKKKKW##WKEEEEEEDfi .,;tfLLGGGDDDDDDDDDD *\n\t *tti. ....::,,;;;,LEEKKKKKKWKKKKKWWWWWWW###WWWWWWWWWWKWWDKWEEEWKKWWWWWKKj.:LG..;.........EKEEEEKG;.G...;.....;KKEKWWWKKKKKKKKKKW##WWKEEEEEDfL .,;tfLGGGDDDDDDDDDDD *\n\t *jti. ...::::,;ijDEEKKKKKWKKKKKKWKWWWWW##WWWWWWWWWWWKK#KKGDGDWEEWKKWKKGE,.i;.:.........:EKEEEKE;.:L...j.....,KWEKWWWKKKKKKKKKK####WKKEEEEDLG .,;tfLGGGGDDDDDDDDDD *\n\t *jti. ...:...,,;GEEKKKKKWWKKKKKWWWWWWWW###WWWWWWWWWKKKWWKiLGGEDEDEKGKKiEG..;...........jKEEEKK;:.G....,.....:KKEWWWWKKKKKKKWKK####WKKKKEEEGL .,;tfLGGGGDDDDDDDDDD *\n\t *jti. ...:. .:,GEEKKKKKWKKKKKWWWWWWWW####WWWWWWWWWKKKWWKii;fDLGDK: EEi:E:.............EKEEKK;;..L...........KKKWWWWKKKKKKKWKK####WKKKWKEEDf .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. ,EEKKKKKWWKKKKKWWWWWWWWW###WWWWWWWWKKKKfWWLt;i,. fi EG..D:.............EKEKK;;..t....:.......KWKWWWWKKKKKKKWKK####WKKKWEEEDf:. .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. GEEKKKKKWKKKKKWWWWWWWWW####WWWWWWWKKKKKt;KKEfff .;t.................KKKKi;:..GtGGfG.......KWWWWWWKKKKKKKWKK###WWWKKKKEEEf,,: .,;tfGGGGDDDDDDDDDDD *\n\t *jti. ...:. GEKKKKKWWKKKKKWWWWWWWWWW##WWWWWWWKKKKKKt;EiKKKK, ...t................jEKKG;;..,.....,LGi....KWWWWWWKKKKKKWKKKW####WKKKKKEEL,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. .GEEKKKKKWKKKKKWWWWWWWWWW###WWWWWWWKKKKKKtiE::tGG........................EEEj;;...,.........:D..DKWWWWWWKKKKK#KKW###W#WKKKKKEEfj:,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. DEKKKKKWWKKKKKWWWWWWWWW####WWWWWWWKKKKKKiiE:::.::.......................EEi;;...j.....f......:iDKWWWWWWKKKKK#WW######WKKKKKEELG :,,,,:. .,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. fEEKKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKK;tE::..........................DD;.;,.::......;........EWWWWWWWKKKKW#WW#####WWKKKWKKELG .:,,,:::,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. .DEKEKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKE,iD::..........................D..,;.,;tLffi...........DWDWWWW#KKKWWWWW#####W#KKKWKEEGL .:,;,,,;tfGGGDDDDDDDDDDDD *\n\t *jti. ...:. ;EEKKKKWWKKKKKWWWWWW#WWWW####WWWWWWKKKKKEL:iD:..........................j ..;..;;:.....i,........DKtWWWWWKKWWWWWW#####WWWKKKEKEDf .:,;;;itfGGGDDDDDDDDDDDD *\n\t *jti. ...:. DEKKKKKWWKKKKWWWWWWW#WWWW####WWWWWWKKKKKEj:iG...............................:....................GKiWWWWWKKWW#WWW######WWKKKKKEEf .,;iitfGGGDDDDDDDDDDDD *\n\t *jti. ...:.:EKKKKKWWKKKKKWWWWWWW#WWW#####WWWWWKWKKKKEi:if:.................................iEKEKKKKKKDj......DKiWWWWWKWK##WW#######WWKKK:KEEL .:;itfGGGDDDDDDDDDDDD *\n\t *jji. ...:,DEEKKKWWWKWKKWWWWWWWWWWWW#####WWWWWWWKKKKEi:it..................................j. KKKKKKKKKKKf..DKiWWWWWKWW##WW#######WWKKK,KEEf .,;tfGGGDDDDDDDDDDDD *\n\t *jji. ..L:iDEEKKKWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKKi.i;.................................. . KKKWWWWWWWWK..DGiWWWWWKK##WWW#####W#WWKKKjEKEL, .:;tfGGGDDDDDDDDDDDD *\n\t *jji. .f:::EEEKKKWWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKK;.i,.................................:: KKEKWWWWWWfWK..EiiWWWWWKWW#WW##########KKKD,KELj .:;tfGGDDDDDDDDDDDDD *\n\t *jji. .t::::,DEEKKKWWKKKKWWWWWWWWW#WWWW#####WWWWKKWKKKEK;.i:.................................GDDEEEKKKWWWWWtWWD.E;iWWWWWW###WW#########WWKKK.EEDG .:;tfGGGDDDDDDDDDDDD *\n\t *jji. . j..::::EKEKKKWWWKKKKWWWWWWWWW#WWW######WWWWKKWKKKEK;.t:.................................ELLEDDEEEWWWWEtWK,.KiiWWWWWW###W##########WWKKK:EEEG .;tjfLLGDDDDDDDDDDDDDDD *\n\t *jji. i.::::::,EEEKKWWWKKKKKWWWWWWWWW#WWW#####WWWWWKWKKKKEE,.t..................................DfiEGDDDEEKKKttKWG.KiiWWWWW##WWW##########WWKKK:fEEL ,fGGGDDDDDDDDEEEDDDDDDDDDD *\n\t *jji. .;:..:::::DEEEKKWWWKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKED,.t..................................ifjDDGGEGDKK.ttKKE.DiWWWWW###WW##########WWWKKK:.KELiLGGGGDDDDDDDDDDDDEEEDDDDDDD *\n\t *jji. i.:.::::::,KEEKKWWWKKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKEL:.j..................................GGf,;ifLLED .iiKKi:fWWWWWW##W#W##########WWWKKK:.KKLGGDDDDDDDDDDDDDDDDEDDEEDDDDD *\n\t *jji. .j:.::::::::EEEKKKWWWKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKf:.f..................................:EEfftf .,. ;iE,..jWWWWWWW###W############WWKKK,:KKGDDDDDDDDDDDDDDDDDDDDDDDEDDDD *\n\t *jji. .:.::::::::,,EEEKKWWWKKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKt..G....................................EEELL; .j....tKWWWWWWW################WWWKKtfGKGEDDDDDDDDDDDDDDDDDDDDDDDEEDD *\n\t *jji. :...:::::::,,jEEKKWWWWKKKKKKWWWWWWWWW##KWW#####KWWWWWWKKKKEi..D....................................:jEEE.........;KKWWWWWWWW#WW##W##########WWKKDLGKEKDDDDDDDDDDDDDDDDDDDDDDDDDED *\n\t *jji. i:.::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWW##WWW#####WWWWWWWKKKKKi..D......................................:::::......,KKKWWWWWWWWW#####W########WWWKKKGGKKEGGGGGGGGDDDDDDDDDDDDDDDDDDE *\n\t *jji. i..:::::::::,,tEEKKWWWWKKKKKWWWWWWWWWWW##WW######WWWWWWWKKKKKi..D......................................::::......:EKKKWWWWWWWWWWW##WW########W#WKKWGGKKGGGGGGGGGGGGGGGDDDDDDDDDDDDD *\n\t *jji. .:::::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWWW##WW#####WWWWWWWWKKKKKi..D....................................:::::::::..tELii;KWWWWWWWWWW##WW######WWWWWWKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGDG *\n\t *jjt. :.::::::::,,,,fEEKKWWWWKKKKKKWWWWWWWWWW###WW####WWWWWWW#WKKKKKi..D....................................:::::::.:.,;;;;;;,KKWWWWWWWWW#WW########WWWKKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGGG *\n\t *jji. ;.::::::::,,,,;EEEKWWWWWKKKKKWWWWWWWWWWWW##WW###WKWWWWWK#WKKKKKi..G......................................:::::::,;;;;:...KKKWWWWWWWWWKWW#######WWWWKKGLGKDGGGGGGLLGGGGGGGGGGGGGGGGGGG *\n\t *jjt. f.:::::::::,,,,fEEKKWWWWWKKKKKWWWWWWWWWWW###WW##WKKWWWWWW#WKKKKK;.jt........i.............................:::::::;j;;....:E.KKKWWWWWWWKWW#####W#WWWWKKLLGWEEGGGGGLGGGGGGGGGGGGGGGGGGGG *\n\t *jjt. ...:::::::,,,,,;DEEKWWWWWKKKKKWWWWWWWWWWWW####WWWKKKWWWWWWWWKKKKK;.E;.........t.............................:::::ii;;.....D...KKWWWWWWWKWW#####WWEWWWKKGGGEKKGGGGGLGGGGGGGGGGGGGLGGGGGG *\n\t *fji. ;.:::::::,,,,,;LEEKKWWWWWKKKKKWWWWWWWWWWWW####KWKKKKWWWWWWWWKKKKKi.D;..........j.............................:::tt;,.....:.....KKWWWWWWKWWWW##WWWGWWWKKGGGGKEGGGGGGGGGGGGGGGGGGGLLGGGGL *\n\t *fji. t::::::::,,,,,,;EEEKWWWWWKKKKKKKWWWWWWWWWWW##WKWKKKKKWWWWWWWWKKKKKi:D;............j...........................::LL;,.............KKWWWWWKWWWWWWWWWGWWWKKGGGGKGGGGGGGGGGGGGGGGGGGGLLGGGGL *\n\t *fjt: .:::::::,,,,,,,DEEKWWWWWWKKKKKKKWWWWWWWWWWWWKKWKKKKKKWWWWK#WWKKKKWitE;........... ............................:G;;:...............KKKWWKKWWWWWWWWWGWWWKKGGGGWGGGGGGGGGGGGGGGGGGGGGGGGGGL *\n\t *fjji;:. .f:::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWWKKKKKKKKKKKWWKWWWWWKKKKWGKD;........................................L;;..................DKKWKKWWWWWWWWWGWWWKKDGGGKDGGGGGGGGGGGGGGGGGGGGGGGGGG *\n\t *fjjtii;,:. :::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWKKKKKKKKKKKKWWWWWW#WWKKKKWiEj;......................................:i,;....,...............;KKEKWWWWWWWWWGKWWKKDDGGDEGGGDGGGGGDGGGGGGGGGGGGGGGG *\n\t *fjtiiiii;;:. j::::::,,,,,,,;;EEEKWWWWW#KKKKKWWWWWWWWWKKKKKKWKKKKKKKWWWWWWWWWKKKKWtEL;:....................................;;;:...,;j................:KEEWWWWWWWWWDDWWKKDDDDDKDDDDDDDDDDDDDDDGGGGGGGGGGG *\n\t *fjti;;iiii;;,:::::::,,,,,,,,;EEEKWWWWWWWKKKKWWWWWWWWKKKKKKKWKKKKKKKWWWWWWW#W#KKKKWEEii;...................................f;:....,;L...................EEKWWWWWWWWDDWWKKDDDDDKEDDDDDDDDDDDDDDDDDDDDDGGGG *\n\t *fjt,,,;;;;ii;f::::::,,,,,,,;;EEKWWWWWWWKKKKKWWWKWWKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWKEij;:...............................:G;,.....,;f....................:tKKWWWWWWWDDWWKKDDDDDKKDDDDDDDDDDDDDDDDDDDDDDDDD *\n\t *jjt. ..:,;;;;,::::,,,,,,,,;;GEEWWWWWWWWKKKKWKKWKKKKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWEDi;j;............................,Li;L;;;..,;;f........................KKKKWWWKDDWWKKDDDGDKKGGGGGGGGDGDDDDDDDDDDDDDDD *\n\t *fjt. .:,,,:::::,,,,,,,;;;EEKWWWWWWWKKKKKKWKKKKKKKKKKKKKKKKKKKKKWKKKWKW##W#KKKKWEti;;G;........................tEEEL;;;;;;;;;;L..........................DKKKKKEDDWWKEDGftiLE;;;;itjLGGGGGGDDDDDDDDDDD *\n\t *fjt. .j::::,,,,,,,;;;DEEWWWWWWWWKKKKWKKKKKKKKKKKKKKKKKKKKKKKWKKWWWK##W#KKKKKEii;;;L;...................iDEEEEEEKKi;j;;;;jD.....:......................,KKKKDGGEKKE:::::;E::::::::::,tLGGDDDDDDDDDD *\n\t *fjt. .;:::,,,,,,,;;;;EEKWWWWWWWWKWKKKKKKKKKKKKKKKWKKKKKKKKKKWKKWWWW#WW#KKKKKKii;;;;f;.............:tDEEEEEKKKKKKKKEti;;;L...............................EEKf;:iKKE::::::E::::::::::::::ifDDDDDDDDD *\n\t *fjt: :::,,,,,,,,;;;DEEWWWWWWWWWEKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####KKKKKEiii;;;;f,.........iDEEEEKKKKKKKKKKKKKKKf;iG......i..........................fK::::KKE::::::E::::::::::::::::,tGGDDDDD *\n\t *fjt: t:::,,,,,,;;;;iDEKWWWWWWKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####WKKKKLiii;;;;;L,....,Li;EDEEEEKKKKKKKKKKKKKKKKiG......;:...........................:i:::KKE:::::,E,::::::::::::::::::iGDDDD *\n\t *jjt. f::,,,,,,,;;;;GEEWWWWKEEKEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKWWWWW###WWKKKKiii;;;;;;;G,;L;;iiEEEEEEEKKKKKKKKKKKKKWWKE......;t.........:....................j::KEE:,::,,D,,::::,,,,,,:::::::::tDDD *\n\t *fjt:. ,::,,,,,,,;;;;EEWWKEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKKWWWWW#W#KKKKKKiiiiii;;;;;i;;iiiEEKEEKKWKKKKKKKWKKKKKWWWGi;...;t......,;;;;,....................:,EEE,,,,,,D,,,,,,,,,,,,,,,,::,::::tG *\n\t *fjt:. ,::,,,,,,,;;;;DEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWW#W#KKKKKKiiiii;;i;;;;;iiiKKKEKKKKWWKWWWWWWKKKKWWWWW;;;:;L.....;;;;;;;;;....................,KEE,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,; *\n\t *fjt:. f:,,,,,,,;;;;jEDEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWW#W##KKKKKKiiiiiiii;i;;iiiEKKKKKKKKWKWWWWWWWWKKKWWWWWKi;;i.....,jEEfGi;;;;;...................EED,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,, *\n\t *fjt:. .f::,,,,,,;;jEEDEEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWKWWWWW###KKKKKLiiiiiiiiiiiiiiEEKKKKKKKKWWWWWWWWWWWWKWWWWWWGi;i;,..;jDDDKEGi;;;;;;:................EED,,,,,,D,,,,,,,,,,,,,,,,,,,,,,,,, *\n\t *fjt:. .. ;::,,,,,;;EDDEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKW#WW####KWKKKiiiiiiiiiiiiijKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWt;i;;;;i;DDDDDDGi;;;;;;;;:.............EDf;,,,;,G;;;;;;;;;;;;;;;,,,,,,,,,, *\n\t *fjt:......:,,,,,,;LDDDEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWWKWWWW####KKKKKiiiiiiiiiiijKEKKWKKKKKKKWWWWWWWWWWWWWWWWWWWWWWiLiii;i;DEEEEDDE;i;;;;;;;;;:..........EDi,;;;;;L;;;;;;;;;;;;;;;;;;,,,,,,, *\n\t *fjt:......:,,,,,;EDDDEEKEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKWWWWKKWWW##W#KWKKWEiiiiiijGKKKKKWWKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKi;iiiiDDEEEEEEDEi;;;;;;;;;;;;;,:.....ED;;;;;;;j;;;;;;;;;;;;;;;;;;;;;;;,, *\n\t *fjt:.....t,,,,,;DDDDEEEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKWWWW##WKWKKWKiiiKKKKKKKKKWWKKKKKKKKWWWWWWWWWWWWWWW#WWWWWWWWWiiiiifLEEEEEEEEDi;i;;;;;;;;;;;;.....DD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; *\n\t *fjt:.....G,,,,,GDDDEEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKKWWWKKKWWW###WKWKKWKitKKKKKKKKKWKKKKKKKKKKWWWWWWWWWWWWWW###WWWWWWWWEiiiiiiiEEEEEEEEDGiiii;;;;;;;;;.....GD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; *\n\t *fjt:.....L,,,,;GDDDEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWDGWWW###KKWWKWKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWW####WWWWWWWWWiiiiiiiiEEEEEEEEEEDi;i;;;;;;;;.....Lj;;;;;;i;iiiiii;;;;;;ii;;;;;;;;;;; *\n\t ***********************************************************************************************************************************************************************************************************/\n\n\t\t\n}", "Main" ]
//No sorceries shall prevail. import java.util.*; import java.io.*; import java.lang.reflect.Array; public class Main { static Scanner inp= new Scanner(System.in); static PrintWriter out= new PrintWriter(System.out); public static void main(String args[]) { Main g=new Main(); g.main(); out.close(); } void main() { int x=inp.nextInt(); out.println(x==1?0:1); } /********************************************************************************************************************************************************************************************************* * ti;. .:,:i: :,;;itt;. fDDEDDEEEEEEKEEEEEKEEEEEEEEEEEEEEEEE###WKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWW#WWWWWKKKKKEE :,:. f::::. .,ijLGDDDDDDDEEEEEEE* *ti;. .:,:i: .:,;itt;: GLDEEGEEEEEEEEEEEEEEEEEEDEEEEEEEEEEE#W#WEKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKKKKKKG. .::. f:,...,ijLGDDDDDDDDEEEEEE * *ti;. .:,:i: :,;;iti, :fDDEEEEEEEEEEEEEEEKEEEEDEEEEEEEEEEEW##WEEEKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWWKKKKKKEG .::. .f,::,ijLGDDDDDDDDEEEEEE * *ti;. .:,:i: .,,;iti;. LDDEEEEEEEEEEKEEEEWEEEDDEEEEEEEEEEE#WWWEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWWWWWKKKKKEDj .::. .:L;;ijfGDDDDDDDDDEEEEE * *ti;. .:,:i: .:,;;iii:LLDEEEEEEEEEEEKEEEEEEEEDEEEEEEEEEEEW#WWEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKWWKWWWWWWWWWWWWWWKKKKKKKEL .::. .:;LijLGGDDDDDDDDEEEEE * *ti;. .:,:;: :,;;ittfDEEEEEEEEEEEEEEEEKEEEGEEEEEEEEEEEKWWWEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWWWWKKKKKKKELj .::. :,;jffGGDDDDDDDDDEEEE * *ti;. .:,:i: .,;;tGGDEEEEEEEEEEEKEEEKEEEDEEEEEEEEEEEEWWWEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWKWWWWWWKKKKKKKEEL .::. .:;itDGGDDDDDDDDDEEEE * *ti;. .:::;: :;ifDEEEEEEEEEEEEKEEEKEEEEEEEEEEEEEEEWWWEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WWWKKKKKKKKEEf .::. :,itfGEDDDDDDDDDDDEE * *ti;. .:::;: :GGEEEEEEEEEEEKEKEEKEEEEEEEEEEEEEEEEWWEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKKEEDG .::. .,;jfLGKDLDDDDDDEEDD * *ti;. .:::;: fDEEEEEEKKKKKKKKKEKEEEEEEEEEEEEEEE#WEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#KKKKKKKKKKEEf .:::. .,;tfLGDEDDDDDDDDEEE * *ti;. :::;: fDEEEEEEKKKKKKKKKKWKEEEEEEEEEEEEEEEWKEEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKKKEEft :::. .,;tfLGDDDKDDDDDDDDD * *ti;. .::;: fDEEEEEEKKKKKKKWKKKKKEEEEEEEEEEEEE#WEEWEEEEEDEEDEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKKKEEGG :,:. .,;tfLGGDDDKDDDDDDDD * *ti;. .:.;: tGDEEEEKKKKKKKKKKKKKKKKKEEEEEEEEEEEWEEKWEEEEEEEDEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKKKKKEEDf :::. .,;tfLGGDDDDEDDDDDDD * *ti;. .::;: fDEEEEEKKKKKKKKKKKWKKKKKKKKEEEEEEEWWEEWEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKW##KKKKKKKEEEft.::. .,;tfLGGDDDDDDEDDDDD * *ti;. .:.;: tGDEEEKKKKKKKKKKKKKKKKKKKKKKEKEEEEE#EEWWEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKW#WKKKKKKEEEGD:::. .,;tfLGGDDDDDDDEDDDD * *ti;. .:.,. LDEEEEKKKKKKKKKKWKWKKKKKKKKKKKKEEEKWEKW#EEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKW##KKKKKKEEEEf,,:. .,;tfLGGDDDDDDDDEDDD * *ti;. ..:.,. LGDEEEEKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEEW#WEEEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEKEKKKKKKKKKKKKKKKK##KKKKKEEEEEfi;,. .,;tfLGGDDDDDDDDDKDD * *tt;. .:.,: jDEEEEKKKKKKKKKKWWKKKKKKKKKKKKKKKKKWKE#WWEEEEEEEEEEEEEEWEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKKKKKKWWKKKKEEEEDfG;,: .,;tfLGGDDDDDDDDDDKD * *tii,. .:.,. tGDEEEEKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKKWWWKEEEEEEEEEEEEEKEEEEEEEEEEEEEEEEEEEEEEEEEEEEEKKKKKKKKKKKW#KKKKEEEEDGGi;,. .,;tfLGGDDDDDDDDDDDE * *ti;;,:. .:.,: fDEEEEKKKKKKKKKKKWKKKKKKKKKKKKKKKKKWEK#WWKEEEEEEEEEEEEDEEEEEEEEEEEEEEGEEEEEEEEEEEEEEEEEEEKKKKKKKWWKKEEEEEEDDf;;;,. .,;tfLGGDDDDDDDDDDDD * *tii;,,:.. ...,. ;LEEEEEKKKKKKWKKKKWKKKKKKKKKKKKKKKKKEKKW#WEEEEEEEEEEEEEjEEEEEEEEEKEEEEGEEEEEEEEEKEEEEEEEEEEEEEEEEE#WKEEEEEEDDf;;;;,: .,itfLGGDDDDDDDDDDDD * *ti;,,,,,:. ...,. LDEEEEKKKKKKKKKKKWWWKKKKKKKKKKKKKKKWKK#W#WEEEEEEEEEEEDDLEEEEEEEEEWEEEEDEEEEEEEEEKEEEEEEEEEEEEEEEEEWWEEEEEEEDDfj,,,,,:. .,itfGGGDDDDDDDDDDDD * *tii,,,,::::. ...,: .fDEEEEKKKKKKWKKKKWWWKKKKKKKKKKKKKKKEKKW#WWEEEEEEEEEEEKiKEEKEEEEEEWEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEEWWEEEEEEEDDLD:::,,,:. .,ijfGGGDDDDDDDDDDDD * *ti;:::::::::.. .:.,: LDEEEEKKKKKKKWKKKKWWKKKKKKKKKKKKKKKKtKKWWWWKEEEEEEEEEDiiDEEEEEEEEWWEEEEEEDEEEEEEEEEEEEEEEEEEEEEEEEEEWKEEEEEDDDGL:. .:,,,: .,ijLGGGDDDDDDDDDDDD * *tt;. .::::::::.. ...,: :fDEEEKKKKKKKKKKKKWW#KKKKKKKKKKKKKKKKfKKWWWWKEEEEEEEEDti,DEKEEEEEEWWEEEDEEEEEEEEEKEEEEEEEEEEEEEDEEEEE#WEEEEEGGDGf:. .:,;,:. .,ijLGGDDDDDDDDDDDDD * *tt;. .:::::::.. ...,: GDEEEKKKKKKKKWKKKKWWWKKKWKKKKKKKWWWKDEKLWWWWKKEEEEEEDEi,LDEEEEEEEEWWEEEEEEEEEEEEEEEEEEEEEEEEEDEDEEEEEW#EEEEDDDDGf,. :,,,:...,ijLGGGDDDDDDDDDDDD * *tt;. .....::::.. ...,: fDEEEKKKKKKKKWKKKKWWWWKKKWKKKKKKKKKKfWKiWWW#KKEEEEEEEi;.EDfEEEDEEiWWEEEEEEEEEEEEDGKEEEEEEEEEEDEEEEEEEWWEEEEDDDGGLi. .,;,:::,ijLGGGDDDDDDDDDDDD * *tt;. ....:::::. ...,. iDEEEEKKKKKKKKWKKWKWWWWWKKWWWKKKKKKKKtWKt#WWWKKEEEEEDji..DDKDDEDEGiWKEEEEEEEEEEDDEjEEEEEEEEEEEDEEEEEEEKWKEEDDDDGGff. .:,;,,;ijLGGGDDDDDDDDDDDD * *tt;. ....::::.. .:.,: .LDEEEKKKKKKKKKKKKWWWWKWWWWWWWWWWKKKKWtKKiDWWWKKKEEEEKi:..DEDDDDDDiiWKEEEEEEEEEEDDEijDEEEEEKEEEEEEEEEEEEWWEEGDDDGGLG. .:,;;iijLGGGDDDDDDDDDDDD * *tt;. .....:::.. ...,. .fEEEEKKKKKKKKWKKKKWWWWWWWWWWWWWWKWKKKiKDiLWWWWKEEEEEi,..fD:DDDDDti;WEEEEEEEEEEKDDi:iDDEEEEWEEEEEEEEEEEE#WEEGDDDDGGG. :,iitjLGGGDDDDDDDDDDDD * *tti. .....:::.. ...,. GDEEEKKKKKKKKKWKKKWWW#WWWWWWWWWWWKWKKjiEjitWWWKKWEEEDi...DDLDDDDji;;WEEEEEEEEEEEDEj.iDDEEEEWEEEEEEEEEEEEWWEEDDDDDDGf. .,;tjfLGGDDDDDDDDDDDD * *tti. ....::::.. ...,. fEEEKKKKKKKKKKKKKKKW#WWWWWWWWWWWWWWWWtiEiiiWWWKKEWKEi....D.EDDDEi;.fWEEEEEEEEEEDDfL.;EDDEEEWEEEEEEEEEEEEWWEEEDDDDDGf. :;ijfLGGDDDDDDDDDDDD * *tti. ....::::.. ...,. LDEEEKKKKKKKKKKKKKKWWWWWWWWWWWWWWWW####WKiiiWWWKKKEEK,...:E:DDDEii..GWEEEEEEEEDWDDiL.,KDDEEEWEEEEEEEEEEEEWWKEEDDDDDGf: .,itfLGGDDDDDDDDDDDD * *tti. .....:::.. ...,. fDEEEKKKKKKKKKWKKKKWWWWWWWWWWWWW########WLiiWWWKKKEEjD...G,DDDDi;...EWEEEEEEEEDKDEii..LDDEEEWEEEEEEEEEEEEWWWEEDDDDDGfi .,;tfLGGGDDDDDDDDDDD * *tti. .....:::.. ...,. iGEEEKKKKKKKKKKWKKKKWWWWWWWWWWWW###########KiWWWKKEEE,.D..D.DDDii:...KKEEEEEEEEEDDj:...tEDEEEWEEEEEEEEEEEEWWWEEEDDDDDLL .,;tjLLGGDDDDDDDDDDD * *tti. ....::::......:. LEEEKKKKKKKKKKWWKKKWWW#KWWWWWWWW#####W####W##KWWKKEEL..:D.jjDDi;,....KKEEEEEEEDfDDi...:iKDEEEWKEEEEEEEEEEEWWWEEEEDDDDLG .,;tjLLGGDDDDDDDDDDD * *tti. ...::::::..,. :GEEEKKKKKKKKKKKKWWWWW##WWWWWWWWW##WKWK#W#W####WWKEEK.....G.DDti,.....KKEEEEEEDWGDf.,...iKDEEEWWEEEEEEEEEEEW#WEEEEEDDDGL .,;tjLLGGDDDDDDDDDDD * *tti. ....::::::,. GDEEKKKKKKKKKKKKKWWWW###WWWWWWWWWW#WWWK###W#####WKEKK.....jDDL;;......KKEEEEEEEEEDi.f...;KDEEEWWEEEEEEEEEEEWWWWEEEEEDDGf .,;tjLLGGDDDDDDDDDDD * *tti. ....:::,,. .LEEEKKKKKWKKKKKWWWWWW###WWWWWWWWWW#WWKW#WW##W#WWWKEKD:....:DD:;......;KEEEEEEEKiDD..f...,KKEEEWWEEEEEEEEEEEWWWWEEEEEDDDf .:;tjLLGGGDDDDDDDDDD * *tti. ...::,,,:. GDEEKKKKKKKKKKKKWWWWWWW#WWWWWWWWWWW#KjKWWWWWWWWWWWWEK.j,..;fD.;.......fKEEEEEDKG:Di..,....DKEEEWWEEEEEEKEKKKWWWWEEEEEEDDf .:;tjLLGGDDDDDDDDDDD * *jti. ...::,,,,:. .fEEEKKKKKWKKKKKKWWWWWWW#WWWWWWWWWWK#KKKWWWWWWWWWWWWWK..f:.:G.,:.......EKEEEEEKK;:E:.......fKEEEWWKEKEKKKKKKKW#WWEEEEEEDDf: .,;tfLLGGDDDDDDDDDDD * *tti. ...:,,,;;,: iDEEKKKKKWKKKKKKKWWWWWWW#WWWWWWWWWWK#WDKWWKKWWWWWWWWWE..;G:G..,........KKEEEEEKi.Gi..:.....tKEEKWWWKKKKKKKKKKW##WKEEEEEEDfi .,;tfLLGGGDDDDDDDDDD * *tti. ....::,,;;;,LEEKKKKKKWKKKKKWWWWWWW###WWWWWWWWWWKWWDKWEEEWKKWWWWWKKj.:LG..;.........EKEEEEKG;.G...;.....;KKEKWWWKKKKKKKKKKW##WWKEEEEEDfL .,;tfLGGGDDDDDDDDDDD * *jti. ...::::,;ijDEEKKKKKWKKKKKKWKWWWWW##WWWWWWWWWWWKK#KKGDGDWEEWKKWKKGE,.i;.:.........:EKEEEKE;.:L...j.....,KWEKWWWKKKKKKKKKK####WKKEEEEDLG .,;tfLGGGGDDDDDDDDDD * *jti. ...:...,,;GEEKKKKKWWKKKKKWWWWWWWW###WWWWWWWWWKKKWWKiLGGEDEDEKGKKiEG..;...........jKEEEKK;:.G....,.....:KKEWWWWKKKKKKKWKK####WKKKKEEEGL .,;tfLGGGGDDDDDDDDDD * *jti. ...:. .:,GEEKKKKKWKKKKKWWWWWWWW####WWWWWWWWWKKKWWKii;fDLGDK: EEi:E:.............EKEEKK;;..L...........KKKWWWWKKKKKKKWKK####WKKKWKEEDf .,;tfGGGGDDDDDDDDDDD * *jti. ...:. ,EEKKKKKWWKKKKKWWWWWWWWW###WWWWWWWWKKKKfWWLt;i,. fi EG..D:.............EKEKK;;..t....:.......KWKWWWWKKKKKKKWKK####WKKKWEEEDf:. .,;tfGGGGDDDDDDDDDDD * *jti. ...:. GEEKKKKKWKKKKKWWWWWWWWW####WWWWWWWKKKKKt;KKEfff .;t.................KKKKi;:..GtGGfG.......KWWWWWWKKKKKKKWKK###WWWKKKKEEEf,,: .,;tfGGGGDDDDDDDDDDD * *jti. ...:. GEKKKKKWWKKKKKWWWWWWWWWW##WWWWWWWKKKKKKt;EiKKKK, ...t................jEKKG;;..,.....,LGi....KWWWWWWKKKKKKWKKKW####WKKKKKEEL,,,:. .,;tfGGGDDDDDDDDDDDD * *jti. ...:. .GEEKKKKKWKKKKKWWWWWWWWWW###WWWWWWWKKKKKKtiE::tGG........................EEEj;;...,.........:D..DKWWWWWWKKKKK#KKW###W#WKKKKKEEfj:,,,:. .,;tfGGGDDDDDDDDDDDD * *jti. ...:. DEKKKKKWWKKKKKWWWWWWWWW####WWWWWWWKKKKKKiiE:::.::.......................EEi;;...j.....f......:iDKWWWWWWKKKKK#WW######WKKKKKEELG :,,,,:. .,;tfGGGDDDDDDDDDDDD * *jti. ...:. fEEKKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKK;tE::..........................DD;.;,.::......;........EWWWWWWWKKKKW#WW#####WWKKKWKKELG .:,,,:::,;tfGGGDDDDDDDDDDDD * *jti. ...:. .DEKEKKKWWKKKKWWWWWWWWWWW###WWWWWWWWKKKKKE,iD::..........................D..,;.,;tLffi...........DWDWWWW#KKKWWWWW#####W#KKKWKEEGL .:,;,,,;tfGGGDDDDDDDDDDDD * *jti. ...:. ;EEKKKKWWKKKKKWWWWWW#WWWW####WWWWWWKKKKKEL:iD:..........................j ..;..;;:.....i,........DKtWWWWWKKWWWWWW#####WWWKKKEKEDf .:,;;;itfGGGDDDDDDDDDDDD * *jti. ...:. DEKKKKKWWKKKKWWWWWWW#WWWW####WWWWWWKKKKKEj:iG...............................:....................GKiWWWWWKKWW#WWW######WWKKKKKEEf .,;iitfGGGDDDDDDDDDDDD * *jti. ...:.:EKKKKKWWKKKKKWWWWWWW#WWW#####WWWWWKWKKKKEi:if:.................................iEKEKKKKKKDj......DKiWWWWWKWK##WW#######WWKKK:KEEL .:;itfGGGDDDDDDDDDDDD * *jji. ...:,DEEKKKWWWKWKKWWWWWWWWWWWW#####WWWWWWWKKKKEi:it..................................j. KKKKKKKKKKKf..DKiWWWWWKWW##WW#######WWKKK,KEEf .,;tfGGGDDDDDDDDDDDD * *jji. ..L:iDEEKKKWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKKi.i;.................................. . KKKWWWWWWWWK..DGiWWWWWKK##WWW#####W#WWKKKjEKEL, .:;tfGGGDDDDDDDDDDDD * *jji. .f:::EEEKKKWWWKKKKKWWWWWWWWWWWW#####WWWWWKWKKKKK;.i,.................................:: KKEKWWWWWWfWK..EiiWWWWWKWW#WW##########KKKD,KELj .:;tfGGDDDDDDDDDDDDD * *jji. .t::::,DEEKKKWWKKKKWWWWWWWWW#WWWW#####WWWWKKWKKKEK;.i:.................................GDDEEEKKKWWWWWtWWD.E;iWWWWWW###WW#########WWKKK.EEDG .:;tfGGGDDDDDDDDDDDD * *jji. . j..::::EKEKKKWWWKKKKWWWWWWWWW#WWW######WWWWKKWKKKEK;.t:.................................ELLEDDEEEWWWWEtWK,.KiiWWWWWW###W##########WWKKK:EEEG .;tjfLLGDDDDDDDDDDDDDDD * *jji. i.::::::,EEEKKWWWKKKKKWWWWWWWWW#WWW#####WWWWWKWKKKKEE,.t..................................DfiEGDDDEEKKKttKWG.KiiWWWWW##WWW##########WWKKK:fEEL ,fGGGDDDDDDDDEEEDDDDDDDDDD * *jji. .;:..:::::DEEEKKWWWKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKED,.t..................................ifjDDGGEGDKK.ttKKE.DiWWWWW###WW##########WWWKKK:.KELiLGGGGDDDDDDDDDDDDEEEDDDDDDD * *jji. i.:.::::::,KEEKKWWWKKKKKKWWWWWWWWW#WWWW####WWWWWWWKKKKEL:.j..................................GGf,;ifLLED .iiKKi:fWWWWWW##W#W##########WWWKKK:.KKLGGDDDDDDDDDDDDDDDDEDDEEDDDDD * *jji. .j:.::::::::EEEKKKWWWKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKf:.f..................................:EEfftf .,. ;iE,..jWWWWWWW###W############WWKKK,:KKGDDDDDDDDDDDDDDDDDDDDDDDEDDDD * *jji. .:.::::::::,,EEEKKWWWKKKKKKKWWWWWWWW##WWW#####WWWWWWWKKKKKt..G....................................EEELL; .j....tKWWWWWWW################WWWKKtfGKGEDDDDDDDDDDDDDDDDDDDDDDDEEDD * *jji. :...:::::::,,jEEKKWWWWKKKKKKWWWWWWWWW##KWW#####KWWWWWWKKKKEi..D....................................:jEEE.........;KKWWWWWWWW#WW##W##########WWKKDLGKEKDDDDDDDDDDDDDDDDDDDDDDDDDED * *jji. i:.::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWW##WWW#####WWWWWWWKKKKKi..D......................................:::::......,KKKWWWWWWWWW#####W########WWWKKKGGKKEGGGGGGGGDDDDDDDDDDDDDDDDDDE * *jji. i..:::::::::,,tEEKKWWWWKKKKKWWWWWWWWWWW##WW######WWWWWWWKKKKKi..D......................................::::......:EKKKWWWWWWWWWWW##WW########W#WKKWGGKKGGGGGGGGGGGGGGGDDDDDDDDDDDDD * *jji. .:::::::::::,,,EEEKKWWWWKKKKKWWWWWWWWWWW##WW#####WWWWWWWWKKKKKi..D....................................:::::::::..tELii;KWWWWWWWWWW##WW######WWWWWWKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGDG * *jjt. :.::::::::,,,,fEEKKWWWWKKKKKKWWWWWWWWWW###WW####WWWWWWW#WKKKKKi..D....................................:::::::.:.,;;;;;;,KKWWWWWWWWW#WW########WWWKKWGGGKGGGGGGGGGGGGGGGGGGGGGGGGGGGG * *jji. ;.::::::::,,,,;EEEKWWWWWKKKKKWWWWWWWWWWWW##WW###WKWWWWWK#WKKKKKi..G......................................:::::::,;;;;:...KKKWWWWWWWWWKWW#######WWWWKKGLGKDGGGGGGLLGGGGGGGGGGGGGGGGGGG * *jjt. f.:::::::::,,,,fEEKKWWWWWKKKKKWWWWWWWWWWW###WW##WKKWWWWWW#WKKKKK;.jt........i.............................:::::::;j;;....:E.KKKWWWWWWWKWW#####W#WWWWKKLLGWEEGGGGGLGGGGGGGGGGGGGGGGGGGG * *jjt. ...:::::::,,,,,;DEEKWWWWWKKKKKWWWWWWWWWWWW####WWWKKKWWWWWWWWKKKKK;.E;.........t.............................:::::ii;;.....D...KKWWWWWWWKWW#####WWEWWWKKGGGEKKGGGGGLGGGGGGGGGGGGGLGGGGGG * *fji. ;.:::::::,,,,,;LEEKKWWWWWKKKKKWWWWWWWWWWWW####KWKKKKWWWWWWWWKKKKKi.D;..........j.............................:::tt;,.....:.....KKWWWWWWKWWWW##WWWGWWWKKGGGGKEGGGGGGGGGGGGGGGGGGGLLGGGGL * *fji. t::::::::,,,,,,;EEEKWWWWWKKKKKKKWWWWWWWWWWW##WKWKKKKKWWWWWWWWKKKKKi:D;............j...........................::LL;,.............KKWWWWWKWWWWWWWWWGWWWKKGGGGKGGGGGGGGGGGGGGGGGGGGLLGGGGL * *fjt: .:::::::,,,,,,,DEEKWWWWWWKKKKKKKWWWWWWWWWWWWKKWKKKKKKWWWWK#WWKKKKWitE;........... ............................:G;;:...............KKKWWKKWWWWWWWWWGWWWKKGGGGWGGGGGGGGGGGGGGGGGGGGGGGGGGL * *fjji;:. .f:::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWWKKKKKKKKKKKWWKWWWWWKKKKWGKD;........................................L;;..................DKKWKKWWWWWWWWWGWWWKKDGGGKDGGGGGGGGGGGGGGGGGGGGGGGGGG * *fjjtii;,:. :::::::,,,,,,,;EEEKWWWWWWKKKKKKWWWWWWWWWWKKKKKKKKKKKKWWWWWW#WWKKKKWiEj;......................................:i,;....,...............;KKEKWWWWWWWWWGKWWKKDDGGDEGGGDGGGGGDGGGGGGGGGGGGGGGG * *fjtiiiii;;:. j::::::,,,,,,,;;EEEKWWWWW#KKKKKWWWWWWWWWKKKKKKWKKKKKKKWWWWWWWWWKKKKWtEL;:....................................;;;:...,;j................:KEEWWWWWWWWWDDWWKKDDDDDKDDDDDDDDDDDDDDDGGGGGGGGGGG * *fjti;;iiii;;,:::::::,,,,,,,,;EEEKWWWWWWWKKKKWWWWWWWWKKKKKKKWKKKKKKKWWWWWWW#W#KKKKWEEii;...................................f;:....,;L...................EEKWWWWWWWWDDWWKKDDDDDKEDDDDDDDDDDDDDDDDDDDDDGGGG * *fjt,,,;;;;ii;f::::::,,,,,,,;;EEKWWWWWWWKKKKKWWWKWWKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWKEij;:...............................:G;,.....,;f....................:tKKWWWWWWWDDWWKKDDDDDKKDDDDDDDDDDDDDDDDDDDDDDDDD * *jjt. ..:,;;;;,::::,,,,,,,,;;GEEWWWWWWWWKKKKWKKWKKKKKKKKKKKKKKKKKKKKWWWWWWW#W#KKKKWEDi;j;............................,Li;L;;;..,;;f........................KKKKWWWKDDWWKKDDDGDKKGGGGGGGGDGDDDDDDDDDDDDDDD * *fjt. .:,,,:::::,,,,,,,;;;EEKWWWWWWWKKKKKKWKKKKKKKKKKKKKKKKKKKKKWKKKWKW##W#KKKKWEti;;G;........................tEEEL;;;;;;;;;;L..........................DKKKKKEDDWWKEDGftiLE;;;;itjLGGGGGGDDDDDDDDDDD * *fjt. .j::::,,,,,,,;;;DEEWWWWWWWWKKKKWKKKKKKKKKKKKKKKKKKKKKKKWKKWWWK##W#KKKKKEii;;;L;...................iDEEEEEEKKi;j;;;;jD.....:......................,KKKKDGGEKKE:::::;E::::::::::,tLGGDDDDDDDDDD * *fjt. .;:::,,,,,,,;;;;EEKWWWWWWWWKWKKKKKKKKKKKKKKKWKKKKKKKKKKWKKWWWW#WW#KKKKKKii;;;;f;.............:tDEEEEEKKKKKKKKEti;;;L...............................EEKf;:iKKE::::::E::::::::::::::ifDDDDDDDDD * *fjt: :::,,,,,,,,;;;DEEWWWWWWWWWEKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####KKKKKEiii;;;;f,.........iDEEEEKKKKKKKKKKKKKKKf;iG......i..........................fK::::KKE::::::E::::::::::::::::,tGGDDDDD * *fjt: t:::,,,,,,;;;;iDEKWWWWWWKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKWWWW####WKKKKLiii;;;;;L,....,Li;EDEEEEKKKKKKKKKKKKKKKKiG......;:...........................:i:::KKE:::::,E,::::::::::::::::::iGDDDD * *jjt. f::,,,,,,,;;;;GEEWWWWKEEKEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKWWWWW###WWKKKKiii;;;;;;;G,;L;;iiEEEEEEEKKKKKKKKKKKKKWWKE......;t.........:....................j::KEE:,::,,D,,::::,,,,,,:::::::::tDDD * *fjt:. ,::,,,,,,,;;;;EEWWKEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKWWKKWWWWW#W#KKKKKKiiiiii;;;;;i;;iiiEEKEEKKWKKKKKKKWKKKKKWWWGi;...;t......,;;;;,....................:,EEE,,,,,,D,,,,,,,,,,,,,,,,::,::::tG * *fjt:. ,::,,,,,,,;;;;DEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWW#W#KKKKKKiiiii;;i;;;;;iiiKKKEKKKKWWKWWWWWWKKKKWWWWW;;;:;L.....;;;;;;;;;....................,KEE,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,; * *fjt:. f:,,,,,,,;;;;jEDEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWW#W##KKKKKKiiiiiiii;i;;iiiEKKKKKKKKWKWWWWWWWWKKKWWWWWKi;;i.....,jEEfGi;;;;;...................EED,,,,,,E,,,,,,,,,,,,,,,,,,,,,,,,, * *fjt:. .f::,,,,,,;;jEEDEEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWKWWWWW###KKKKKLiiiiiiiiiiiiiiEEKKKKKKKKWWWWWWWWWWWWKWWWWWWGi;i;,..;jDDDKEGi;;;;;;:................EED,,,,,,D,,,,,,,,,,,,,,,,,,,,,,,,, * *fjt:. .. ;::,,,,,;;EDDEEEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWKKW#WW####KWKKKiiiiiiiiiiiiijKKKKKKKKKKWWWWWWWWWWWWWWWWWWWWWt;i;;;;i;DDDDDDGi;;;;;;;;:.............EDf;,,,;,G;;;;;;;;;;;;;;;,,,,,,,,,, * *fjt:......:,,,,,,;LDDDEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKWWWWKWWWW####KKKKKiiiiiiiiiiijKEKKWKKKKKKKWWWWWWWWWWWWWWWWWWWWWWiLiii;i;DEEEEDDE;i;;;;;;;;;:..........EDi,;;;;;L;;;;;;;;;;;;;;;;;;,,,,,,, * *fjt:......:,,,,,;EDDDEEKEEEEEEEEEKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKWWWWKKWWW##W#KWKKWEiiiiiijGKKKKKWWKKKKKKKKWWWWWWWWWWWWWWWWWWWWWWKi;iiiiDDEEEEEEDEi;;;;;;;;;;;;;,:.....ED;;;;;;;j;;;;;;;;;;;;;;;;;;;;;;;,, * *fjt:.....t,,,,,;DDDDEEEKEEEEEEEEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWKKKWWWW##WKWKKWKiiiKKKKKKKKKWWKKKKKKKKWWWWWWWWWWWWWWW#WWWWWWWWWiiiiifLEEEEEEEEDi;i;;;;;;;;;;;;.....DD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; * *fjt:.....G,,,,,GDDDEEEEEEEEEEEEKKKKKKKKKKKKKKKKWKKKKKKKKKKKKKKKWWWKKKWWW###WKWKKWKitKKKKKKKKKWKKKKKKKKKKWWWWWWWWWWWWWW###WWWWWWWWEiiiiiiiEEEEEEEEDGiiii;;;;;;;;;.....GD;;;;;;;i;;;;;;;;;;;;;;;;;;;;;;;;; * *fjt:.....L,,,,;GDDDEEEEEEEEEEKEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKWWWWWDGWWW###KKWWKWKKKKKKKKKKKKKKKKKKKKKKKWWWWWWWWWWWWW####WWWWWWWWWiiiiiiiiEEEEEEEEEEDi;i;;;;;;;;.....Lj;;;;;;i;iiiiii;;;;;;ii;;;;;;;;;;; * ***********************************************************************************************************************************************************************************************************/ }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 38, 30, 41, 13, 20, 4, 18, 18, 13, 13, 2, 17, 4, 18, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 23, 13, 12, 13, 30, 42, 40, 4, 13, 30, 0, 13, 20, 12, 13, 30, 29, 2, 2, 13, 17, 4, 18, 13, 12, 13, 30, 4, 13, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 18, 36, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 18, 36, 29, 13, 23, 13, 12, 13, 30, 4, 18, 13, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 22, 23 ], [ 22, 24 ], [ 0, 25 ], [ 25, 26 ], [ 25, 27 ], [ 0, 28 ], [ 28, 29 ], [ 28, 30 ], [ 0, 31 ], [ 31, 32 ], [ 31, 33 ], [ 0, 34 ], [ 34, 35 ], [ 34, 36 ], [ 0, 37 ], [ 37, 38 ], [ 37, 39 ], [ 0, 40 ], [ 40, 41 ], [ 40, 42 ], [ 0, 43 ], [ 43, 44 ], [ 43, 45 ], [ 0, 46 ], [ 46, 47 ], [ 46, 48 ], [ 0, 49 ], [ 49, 50 ], [ 49, 51 ], [ 0, 52 ], [ 52, 53 ], [ 52, 54 ], [ 0, 55 ], [ 55, 56 ], [ 55, 57 ], [ 0, 58 ], [ 58, 59 ], [ 58, 60 ], [ 0, 61 ], [ 61, 62 ], [ 61, 63 ], [ 0, 64 ], [ 64, 65 ], [ 64, 66 ], [ 0, 67 ], [ 67, 68 ], [ 67, 69 ], [ 0, 70 ], [ 234, 71 ], [ 234, 72 ], [ 72, 73 ], [ 72, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 76, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 80, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 88, 89 ], [ 72, 90 ], [ 90, 91 ], [ 234, 92 ], [ 92, 93 ], [ 92, 94 ], [ 94, 95 ], [ 92, 96 ], [ 96, 97 ], [ 92, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 101, 102 ], [ 101, 103 ], [ 98, 104 ], [ 104, 105 ], [ 92, 106 ], [ 106, 107 ], [ 106, 108 ], [ 108, 109 ], [ 109, 110 ], [ 110, 111 ], [ 111, 112 ], [ 109, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 92, 117 ], [ 117, 118 ], [ 117, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 122, 123 ], [ 122, 124 ], [ 121, 125 ], [ 125, 126 ], [ 126, 127 ], [ 92, 128 ], [ 128, 129 ], [ 128, 130 ], [ 130, 131 ], [ 131, 132 ], [ 130, 133 ], [ 133, 134 ], [ 134, 135 ], [ 135, 136 ], [ 92, 137 ], [ 137, 138 ], [ 137, 139 ], [ 139, 140 ], [ 140, 141 ], [ 141, 142 ], [ 142, 143 ], [ 141, 144 ], [ 144, 145 ], [ 92, 146 ], [ 146, 147 ], [ 146, 148 ], [ 148, 149 ], [ 149, 150 ], [ 150, 151 ], [ 151, 152 ], [ 150, 153 ], [ 153, 154 ], [ 92, 155 ], [ 155, 156 ], [ 155, 157 ], [ 157, 158 ], [ 158, 159 ], [ 159, 160 ], [ 160, 161 ], [ 159, 162 ], [ 162, 163 ], [ 92, 164 ], [ 164, 165 ], [ 164, 166 ], [ 166, 167 ], [ 167, 168 ], [ 167, 169 ], [ 166, 171 ], [ 171, 172 ], [ 172, 173 ], [ 173, 174 ], [ 173, 175 ], [ 171, 176 ], [ 176, 177 ], [ 176, 178 ], [ 171, 179 ], [ 179, 180 ], [ 180, 181 ], [ 171, 182 ], [ 183, 183 ], [ 183, 184 ], [ 184, 185 ], [ 185, 186 ], [ 185, 187 ], [ 184, 188 ], [ 188, 189 ], [ 189, 190 ], [ 166, 191 ], [ 191, 192 ], [ 164, 193 ], [ 193, 194 ], [ 92, 195 ], [ 195, 196 ], [ 195, 197 ], [ 197, 198 ], [ 198, 199 ], [ 198, 200 ], [ 197, 202 ], [ 202, 203 ], [ 203, 204 ], [ 204, 205 ], [ 204, 206 ], [ 202, 207 ], [ 207, 208 ], [ 207, 209 ], [ 202, 210 ], [ 210, 211 ], [ 211, 212 ], [ 202, 213 ], [ 214, 214 ], [ 214, 215 ], [ 215, 216 ], [ 216, 217 ], [ 216, 218 ], [ 215, 219 ], [ 219, 220 ], [ 220, 221 ], [ 197, 222 ], [ 222, 223 ], [ 195, 224 ], [ 224, 225 ], [ 92, 226 ], [ 226, 227 ], [ 226, 228 ], [ 228, 229 ], [ 229, 230 ], [ 230, 231 ], [ 92, 232 ], [ 0, 233 ], [ 233, 234 ], [ 233, 235 ] ]
[ "import java.io.BufferedReader;\nimport java.io.Closeable;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.InputStreamReader;\nimport java.math.BigDecimal;\nimport java.math.BigInteger;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.Comparator;\nimport java.util.HashMap;\nimport java.util.HashSet;\nimport java.util.Iterator;\nimport java.util.LinkedHashMap;\nimport java.util.LinkedList;\nimport java.util.ListIterator;\nimport java.util.Map.Entry;\n\nimport java.util.PriorityQueue;\nimport java.util.Random;\nimport java.util.StringTokenizer;\nimport java.util.TreeMap;\nimport java.util.TreeSet;\n\n\npublic class Main {\n\t\n\tpublic static void main(String[] args) throws IOException {\t\n\t\ttry(final Scanner sc = new Scanner(System.in)){\n\t\t\tSystem.out.println(1 - sc.nextInt());\n\t\t}\n\t}\n\n\tpublic static class Scanner implements Closeable {\n\t\tprivate BufferedReader br;\n\t\tprivate StringTokenizer tok;\n\n\t\tpublic Scanner(InputStream is) throws IOException {\n\t\t\tbr = new BufferedReader(new InputStreamReader(is));\n\t\t}\n\n\t\tprivate void getLine() throws IOException {\n\t\t\twhile(!hasNext()){\n\t\t\t\ttok = new StringTokenizer(br.readLine());\n\t\t\t}\n\t\t}\n\n\t\tprivate boolean hasNext() {\n\t\t\treturn tok != null && tok.hasMoreTokens();\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\tgetLine();\n\t\t\treturn tok.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t\t\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic int[] nextIntArray(int n) throws IOException {\n\t\t\tfinal int[] ret = new int[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) throws IOException {\n\t\t\tfinal long[] ret = new long[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic void close() throws IOException {\n\t\t\tbr.close();\n\t\t}\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.Closeable;", "Closeable", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.math.BigInteger;", "BigInteger", "java.math", "import java.util.ArrayList;", "ArrayList", "java.util", "import java.util.Arrays;", "Arrays", "java.util", "import java.util.Collections;", "Collections", "java.util", "import java.util.Comparator;", "Comparator", "java.util", "import java.util.HashMap;", "HashMap", "java.util", "import java.util.HashSet;", "HashSet", "java.util", "import java.util.Iterator;", "Iterator", "java.util", "import java.util.LinkedHashMap;", "LinkedHashMap", "java.util", "import java.util.LinkedList;", "LinkedList", "java.util", "import java.util.ListIterator;", "ListIterator", "java.util", "import java.util.Map.Entry;", "Entry", "java.util.Map", "import java.util.PriorityQueue;", "PriorityQueue", "java.util", "import java.util.Random;", "Random", "java.util", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "import java.util.TreeMap;", "TreeMap", "java.util", "import java.util.TreeSet;", "TreeSet", "java.util", "public class Main {\n\t\n\tpublic static void main(String[] args) throws IOException {\t\n\t\ttry(final Scanner sc = new Scanner(System.in)){\n\t\t\tSystem.out.println(1 - sc.nextInt());\n\t\t}\n\t}\n\n\tpublic static class Scanner implements Closeable {\n\t\tprivate BufferedReader br;\n\t\tprivate StringTokenizer tok;\n\n\t\tpublic Scanner(InputStream is) throws IOException {\n\t\t\tbr = new BufferedReader(new InputStreamReader(is));\n\t\t}\n\n\t\tprivate void getLine() throws IOException {\n\t\t\twhile(!hasNext()){\n\t\t\t\ttok = new StringTokenizer(br.readLine());\n\t\t\t}\n\t\t}\n\n\t\tprivate boolean hasNext() {\n\t\t\treturn tok != null && tok.hasMoreTokens();\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\tgetLine();\n\t\t\treturn tok.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t\t\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic int[] nextIntArray(int n) throws IOException {\n\t\t\tfinal int[] ret = new int[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) throws IOException {\n\t\t\tfinal long[] ret = new long[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic void close() throws IOException {\n\t\t\tbr.close();\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) throws IOException {\t\n\t\ttry(final Scanner sc = new Scanner(System.in)){\n\t\t\tSystem.out.println(1 - sc.nextInt());\n\t\t}\n\t}", "main", "{\t\n\t\ttry(final Scanner sc = new Scanner(System.in)){\n\t\t\tSystem.out.println(1 - sc.nextInt());\n\t\t}\n\t}", "try(final Scanner sc = new Scanner(System.in)){\n\t\t\tSystem.out.println(1 - sc.nextInt());\n\t\t}", "{\n\t\t\tSystem.out.println(1 - sc.nextInt());\n\t\t}", "final Scanner sc = new Scanner(System.in)", "final Scanner sc = new Scanner(System.in)", "new Scanner(System.in)", "System.out.println(1 - sc.nextInt())", "System.out.println", "System.out", "System", "System.out", "1 - sc.nextInt()", "1", "sc.nextInt()", "sc.nextInt", "sc", "String[] args", "args", "public static class Scanner implements Closeable {\n\t\tprivate BufferedReader br;\n\t\tprivate StringTokenizer tok;\n\n\t\tpublic Scanner(InputStream is) throws IOException {\n\t\t\tbr = new BufferedReader(new InputStreamReader(is));\n\t\t}\n\n\t\tprivate void getLine() throws IOException {\n\t\t\twhile(!hasNext()){\n\t\t\t\ttok = new StringTokenizer(br.readLine());\n\t\t\t}\n\t\t}\n\n\t\tprivate boolean hasNext() {\n\t\t\treturn tok != null && tok.hasMoreTokens();\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\tgetLine();\n\t\t\treturn tok.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t\t\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic int[] nextIntArray(int n) throws IOException {\n\t\t\tfinal int[] ret = new int[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) throws IOException {\n\t\t\tfinal long[] ret = new long[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic void close() throws IOException {\n\t\t\tbr.close();\n\t\t}\n\t}", "Scanner", "private BufferedReader br;", "br", "private StringTokenizer tok;", "tok", "public Scanner(InputStream is) throws IOException {\n\t\t\tbr = new BufferedReader(new InputStreamReader(is));\n\t\t}", "Scanner", "{\n\t\t\tbr = new BufferedReader(new InputStreamReader(is));\n\t\t}", "br = new BufferedReader(new InputStreamReader(is))", "br", "new BufferedReader(new InputStreamReader(is))", "InputStream is", "is", "private void getLine() throws IOException {\n\t\t\twhile(!hasNext()){\n\t\t\t\ttok = new StringTokenizer(br.readLine());\n\t\t\t}\n\t\t}", "getLine", "{\n\t\t\twhile(!hasNext()){\n\t\t\t\ttok = new StringTokenizer(br.readLine());\n\t\t\t}\n\t\t}", "while(!hasNext()){\n\t\t\t\ttok = new StringTokenizer(br.readLine());\n\t\t\t}", "!hasNext()", "hasNext()", "hasNext", "{\n\t\t\t\ttok = new StringTokenizer(br.readLine());\n\t\t\t}", "tok = new StringTokenizer(br.readLine())", "tok", "new StringTokenizer(br.readLine())", "private boolean hasNext() {\n\t\t\treturn tok != null && tok.hasMoreTokens();\n\t\t}", "hasNext", "{\n\t\t\treturn tok != null && tok.hasMoreTokens();\n\t\t}", "return tok != null && tok.hasMoreTokens();", "tok != null && tok.hasMoreTokens()", "tok != null", "tok", "null", "tok.hasMoreTokens()", "tok.hasMoreTokens", "tok", "public String next() throws IOException {\n\t\t\tgetLine();\n\t\t\treturn tok.nextToken();\n\t\t}", "next", "{\n\t\t\tgetLine();\n\t\t\treturn tok.nextToken();\n\t\t}", "getLine()", "getLine", "return tok.nextToken();", "tok.nextToken()", "tok.nextToken", "tok", "public int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "nextInt", "{\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "public long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}", "nextLong", "{\n\t\t\treturn Long.parseLong(next());\n\t\t}", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "public double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}", "nextDouble", "{\n\t\t\treturn Double.parseDouble(next());\n\t\t}", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "public int[] nextIntArray(int n) throws IOException {\n\t\t\tfinal int[] ret = new int[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}", "nextIntArray", "{\n\t\t\tfinal int[] ret = new int[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}", "final int[] ret = new int[n];", "ret", "new int[n]", "n", "for(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "{\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}", "{\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}", "ret[i] = this.nextInt()", "ret[i]", "ret", "i", "this.nextInt()", "this.nextInt", "this", "return ret;", "ret", "int n", "n", "public long[] nextLongArray(int n) throws IOException {\n\t\t\tfinal long[] ret = new long[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}", "nextLongArray", "{\n\t\t\tfinal long[] ret = new long[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}", "final long[] ret = new long[n];", "ret", "new long[n]", "n", "for(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "{\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}", "{\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}", "ret[i] = this.nextLong()", "ret[i]", "ret", "i", "this.nextLong()", "this.nextLong", "this", "return ret;", "ret", "int n", "n", "public void close() throws IOException {\n\t\t\tbr.close();\n\t\t}", "close", "{\n\t\t\tbr.close();\n\t\t}", "br.close()", "br.close", "br", "Closeable", "public class Main {\n\t\n\tpublic static void main(String[] args) throws IOException {\t\n\t\ttry(final Scanner sc = new Scanner(System.in)){\n\t\t\tSystem.out.println(1 - sc.nextInt());\n\t\t}\n\t}\n\n\tpublic static class Scanner implements Closeable {\n\t\tprivate BufferedReader br;\n\t\tprivate StringTokenizer tok;\n\n\t\tpublic Scanner(InputStream is) throws IOException {\n\t\t\tbr = new BufferedReader(new InputStreamReader(is));\n\t\t}\n\n\t\tprivate void getLine() throws IOException {\n\t\t\twhile(!hasNext()){\n\t\t\t\ttok = new StringTokenizer(br.readLine());\n\t\t\t}\n\t\t}\n\n\t\tprivate boolean hasNext() {\n\t\t\treturn tok != null && tok.hasMoreTokens();\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\tgetLine();\n\t\t\treturn tok.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t\t\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic int[] nextIntArray(int n) throws IOException {\n\t\t\tfinal int[] ret = new int[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) throws IOException {\n\t\t\tfinal long[] ret = new long[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic void close() throws IOException {\n\t\t\tbr.close();\n\t\t}\n\t}\n}", "public class Main {\n\t\n\tpublic static void main(String[] args) throws IOException {\t\n\t\ttry(final Scanner sc = new Scanner(System.in)){\n\t\t\tSystem.out.println(1 - sc.nextInt());\n\t\t}\n\t}\n\n\tpublic static class Scanner implements Closeable {\n\t\tprivate BufferedReader br;\n\t\tprivate StringTokenizer tok;\n\n\t\tpublic Scanner(InputStream is) throws IOException {\n\t\t\tbr = new BufferedReader(new InputStreamReader(is));\n\t\t}\n\n\t\tprivate void getLine() throws IOException {\n\t\t\twhile(!hasNext()){\n\t\t\t\ttok = new StringTokenizer(br.readLine());\n\t\t\t}\n\t\t}\n\n\t\tprivate boolean hasNext() {\n\t\t\treturn tok != null && tok.hasMoreTokens();\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\tgetLine();\n\t\t\treturn tok.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t\t\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic int[] nextIntArray(int n) throws IOException {\n\t\t\tfinal int[] ret = new int[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextInt();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) throws IOException {\n\t\t\tfinal long[] ret = new long[n];\n\t\t\tfor(int i = 0; i < n; i++){\n\t\t\t\tret[i] = this.nextLong();\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\n\t\tpublic void close() throws IOException {\n\t\t\tbr.close();\n\t\t}\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.Closeable; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.math.BigDecimal; import java.math.BigInteger; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.ListIterator; import java.util.Map.Entry; import java.util.PriorityQueue; import java.util.Random; import java.util.StringTokenizer; import java.util.TreeMap; import java.util.TreeSet; public class Main { public static void main(String[] args) throws IOException { try(final Scanner sc = new Scanner(System.in)){ System.out.println(1 - sc.nextInt()); } } public static class Scanner implements Closeable { private BufferedReader br; private StringTokenizer tok; public Scanner(InputStream is) throws IOException { br = new BufferedReader(new InputStreamReader(is)); } private void getLine() throws IOException { while(!hasNext()){ tok = new StringTokenizer(br.readLine()); } } private boolean hasNext() { return tok != null && tok.hasMoreTokens(); } public String next() throws IOException { getLine(); return tok.nextToken(); } public int nextInt() throws IOException { return Integer.parseInt(next()); } public long nextLong() throws IOException { return Long.parseLong(next()); } public double nextDouble() throws IOException { return Double.parseDouble(next()); } public int[] nextIntArray(int n) throws IOException { final int[] ret = new int[n]; for(int i = 0; i < n; i++){ ret[i] = this.nextInt(); } return ret; } public long[] nextLongArray(int n) throws IOException { final long[] ret = new long[n]; for(int i = 0; i < n; i++){ ret[i] = this.nextLong(); } return ret; } public void close() throws IOException { br.close(); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 13, 17, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 40, 14 ], [ 40, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 17, 26 ], [ 26, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 26, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 31, 36 ], [ 15, 37 ], [ 37, 38 ], [ 0, 39 ], [ 39, 40 ], [ 39, 41 ] ]
[ "import java.math.*;\nimport java.util.*;\nimport java.util.function.*;\nimport java.util.stream.*;\n\npublic class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n }\n}", "import java.math.*;", "math.*", "java", "import java.util.*;", "util.*", "java", "import java.util.function.*;", "function.*", "java.util", "import java.util.stream.*;", "stream.*", "java.util", "public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n }\n}", "Main", "public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int n = sc.nextInt();", "n", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println(n == 1 ? 0 : 1)", "System.out.println", "System.out", "System", "System.out", "n == 1 ? 0 : 1", "n == 1", "n", "1", "0", "1", "String[] args", "args", "public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n }\n}", "public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n }\n}", "Main" ]
import java.math.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); System.out.println(n == 1 ? 0 : 1); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 40, 5 ], [ 40, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 21, 26 ], [ 8, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 27, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 31, 36 ], [ 6, 37 ], [ 37, 38 ], [ 0, 39 ], [ 39, 40 ], [ 39, 41 ] ]
[ "import java.util.*;\npublic class Main{\n\n public static void main(String[]args){\n Scanner sc = new Scanner(System.in);\n int a=sc.nextInt();\n if(a==1)System.out.println(\"0\");\n if(a==0)System.out.println(\"1\");\n }\n }", "import java.util.*;", "util.*", "java", "public class Main{\n\n public static void main(String[]args){\n Scanner sc = new Scanner(System.in);\n int a=sc.nextInt();\n if(a==1)System.out.println(\"0\");\n if(a==0)System.out.println(\"1\");\n }\n }", "Main", "public static void main(String[]args){\n Scanner sc = new Scanner(System.in);\n int a=sc.nextInt();\n if(a==1)System.out.println(\"0\");\n if(a==0)System.out.println(\"1\");\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int a=sc.nextInt();\n if(a==1)System.out.println(\"0\");\n if(a==0)System.out.println(\"1\");\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int a=sc.nextInt();", "a", "sc.nextInt()", "sc.nextInt", "sc", "if(a==1)System.out.println(\"0\");", "a==1", "a", "1", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "if(a==0)System.out.println(\"1\");", "a==0", "a", "0", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "String[]args", "args", "public class Main{\n\n public static void main(String[]args){\n Scanner sc = new Scanner(System.in);\n int a=sc.nextInt();\n if(a==1)System.out.println(\"0\");\n if(a==0)System.out.println(\"1\");\n }\n }", "public class Main{\n\n public static void main(String[]args){\n Scanner sc = new Scanner(System.in);\n int a=sc.nextInt();\n if(a==1)System.out.println(\"0\");\n if(a==0)System.out.println(\"1\");\n }\n }", "Main" ]
import java.util.*; public class Main{ public static void main(String[]args){ Scanner sc = new Scanner(System.in); int a=sc.nextInt(); if(a==1)System.out.println("0"); if(a==0)System.out.println("1"); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 4, 18, 18, 13, 13, 4, 13, 13, 23, 13, 12, 13, 30, 29, 2, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 46, 11 ], [ 46, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 20, 23 ], [ 23, 24 ], [ 24, 25 ], [ 14, 26 ], [ 26, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 26, 31 ], [ 31, 32 ], [ 31, 33 ], [ 12, 34 ], [ 34, 35 ], [ 46, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 36, 43 ], [ 43, 44 ], [ 0, 45 ], [ 45, 46 ], [ 45, 47 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n System.out.println(problem178a(x));\n }\n\n private static int problem178a(int x) {\n return 1 - x;\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n System.out.println(problem178a(x));\n }\n\n private static int problem178a(int x) {\n return 1 - x;\n }\n}", "Main", "public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n System.out.println(problem178a(x));\n }", "main", "{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n System.out.println(problem178a(x));\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "int x = Integer.parseInt(br.readLine());", "x", "Integer.parseInt(br.readLine())", "Integer.parseInt", "Integer", "br.readLine()", "br.readLine", "br", "System.out.println(problem178a(x))", "System.out.println", "System.out", "System", "System.out", "problem178a(x)", "problem178a", "x", "String[] args", "args", "private static int problem178a(int x) {\n return 1 - x;\n }", "problem178a", "{\n return 1 - x;\n }", "return 1 - x;", "1 - x", "1", "x", "int x", "x", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n System.out.println(problem178a(x));\n }\n\n private static int problem178a(int x) {\n return 1 - x;\n }\n}", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n System.out.println(problem178a(x));\n }\n\n private static int problem178a(int x) {\n return 1 - x;\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int x = Integer.parseInt(br.readLine()); System.out.println(problem178a(x)); } private static int problem178a(int x) { return 1 - x; } }
[ 7, 6, 12, 13, 30, 29, 4, 18, 20, 18, 13, 13, 23, 13, 23, 13, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 2, 17, 17, 41, 13, 2, 17, 17, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 13, 17, 30, 4, 18, 13, 17, 4, 18, 13, 4, 18, 13, 23, 13, 12, 13, 30, 41, 13, 17, 11, 1, 41, 13, 17, 2, 13, 18, 13, 13, 1, 40, 13, 30, 30, 14, 2, 2, 18, 13, 13, 18, 13, 2, 2, 18, 13, 13, 13, 17, 13, 30, 0, 13, 2, 18, 13, 13, 2, 13, 18, 13, 2, 2, 18, 13, 13, 13, 17, 14, 2, 13, 13, 29, 17, 29, 17, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 17, 41, 13, 13, 42, 2, 13, 13, 30, 41, 13, 2, 2, 13, 13, 17, 14, 2, 13, 4, 18, 13, 13, 30, 0, 13, 13, 30, 0, 13, 2, 13, 17, 29, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 29, 13, 29, 4, 13, 2, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 29, 2, 2, 13, 13, 4, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 4, 18, 13, 13, 20, 23, 13, 23, 13, 12, 13, 30, 41, 13, 18, 13, 13, 0, 18, 13, 13, 18, 13, 13, 0, 18, 13, 13, 13, 29, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 42, 2, 13, 13, 30, 41, 13, 18, 13, 13, 0, 18, 13, 40, 13, 18, 13, 13, 0, 18, 13, 40, 13, 13, 29, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 18, 13, 13, 17, 29, 17, 41, 13, 2, 18, 13, 13, 17, 42, 2, 13, 17, 30, 14, 2, 18, 13, 13, 18, 13, 2, 13, 17, 30, 3, 40, 13, 14, 2, 13, 17, 29, 17, 41, 13, 2, 18, 13, 13, 17, 11, 1, 41, 13, 2, 18, 13, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 14, 2, 18, 13, 13, 18, 13, 13, 30, 0, 13, 13, 3, 0, 13, 4, 13, 13, 13, 13, 0, 13, 4, 13, 13, 2, 13, 17, 2, 18, 13, 13, 17, 29, 17, 23, 13, 12, 13, 30, 14, 2, 13, 13, 29, 17, 29, 2, 4, 13, 13, 2, 4, 13, 13, 4, 13, 2, 13, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 17, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 13, 2, 13, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 17, 0, 13, 2, 13, 13, 42, 2, 13, 17, 30, 14, 2, 2, 13, 17, 17, 0, 13, 2, 2, 13, 13, 13, 0, 13, 2, 2, 13, 13, 13, 29, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 29, 4, 13, 13, 2, 13, 17, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 29, 17, 14, 2, 13, 17, 29, 17, 14, 2, 2, 2, 13, 17, 17, 2, 2, 13, 17, 17, 29, 17, 11, 1, 41, 13, 17, 2, 2, 13, 13, 13, 1, 0, 13, 2, 13, 17, 30, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 2, 13, 17, 17, 29, 17, 29, 17, 23, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 13, 29, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 17, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 4, 18, 13, 29, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 13, 0, 13, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 2, 3 ], [ 2, 4 ], [ 4, 5 ], [ 5, 6 ], [ 6, 7 ], [ 7, 8 ], [ 6, 9 ], [ 9, 10 ], [ 9, 11 ], [ 2, 12 ], [ 12, 13 ], [ 2, 14 ], [ 14, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 22, 23 ], [ 22, 24 ], [ 0, 25 ], [ 25, 26 ], [ 25, 27 ], [ 0, 28 ], [ 731, 29 ], [ 731, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 32, 34 ], [ 731, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 37, 39 ], [ 731, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 42, 46 ], [ 46, 47 ], [ 46, 48 ], [ 42, 49 ], [ 49, 50 ], [ 49, 51 ], [ 42, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 55, 56 ], [ 42, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 57, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 62, 65 ], [ 57, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 67, 70 ], [ 42, 71 ], [ 71, 72 ], [ 72, 73 ], [ 42, 74 ], [ 74, 75 ], [ 75, 76 ], [ 40, 77 ], [ 77, 78 ], [ 731, 79 ], [ 79, 80 ], [ 79, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 81, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 85, 90 ], [ 90, 91 ], [ 90, 92 ], [ 92, 93 ], [ 92, 94 ], [ 85, 95 ], [ 95, 96 ], [ 96, 97 ], [ 85, 98 ], [ 99, 99 ], [ 99, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 102, 106 ], [ 106, 107 ], [ 106, 108 ], [ 109, 109 ], [ 109, 110 ], [ 110, 111 ], [ 110, 112 ], [ 109, 113 ], [ 109, 114 ], [ 101, 115 ], [ 100, 116 ], [ 116, 117 ], [ 117, 118 ], [ 117, 119 ], [ 119, 120 ], [ 120, 121 ], [ 120, 122 ], [ 119, 123 ], [ 123, 124 ], [ 123, 125 ], [ 125, 126 ], [ 125, 127 ], [ 128, 128 ], [ 128, 129 ], [ 129, 130 ], [ 129, 131 ], [ 128, 132 ], [ 128, 133 ], [ 81, 134 ], [ 134, 135 ], [ 135, 136 ], [ 135, 137 ], [ 134, 138 ], [ 138, 139 ], [ 81, 140 ], [ 140, 141 ], [ 79, 142 ], [ 142, 143 ], [ 79, 144 ], [ 144, 145 ], [ 79, 146 ], [ 146, 147 ], [ 79, 148 ], [ 148, 149 ], [ 731, 150 ], [ 150, 151 ], [ 150, 152 ], [ 152, 153 ], [ 153, 154 ], [ 153, 155 ], [ 152, 156 ], [ 156, 157 ], [ 156, 158 ], [ 152, 159 ], [ 159, 160 ], [ 160, 161 ], [ 160, 162 ], [ 159, 163 ], [ 163, 164 ], [ 164, 165 ], [ 164, 166 ], [ 166, 167 ], [ 167, 168 ], [ 167, 169 ], [ 166, 170 ], [ 163, 171 ], [ 171, 172 ], [ 172, 173 ], [ 172, 174 ], [ 174, 175 ], [ 175, 176 ], [ 174, 177 ], [ 171, 178 ], [ 178, 179 ], [ 179, 180 ], [ 179, 181 ], [ 171, 182 ], [ 182, 183 ], [ 183, 184 ], [ 183, 185 ], [ 185, 186 ], [ 185, 187 ], [ 152, 188 ], [ 188, 189 ], [ 150, 190 ], [ 190, 191 ], [ 150, 192 ], [ 192, 193 ], [ 150, 194 ], [ 194, 195 ], [ 731, 196 ], [ 196, 197 ], [ 196, 198 ], [ 198, 199 ], [ 199, 200 ], [ 200, 201 ], [ 200, 202 ], [ 199, 203 ], [ 203, 204 ], [ 198, 205 ], [ 205, 206 ], [ 206, 207 ], [ 206, 208 ], [ 208, 209 ], [ 208, 210 ], [ 206, 211 ], [ 196, 212 ], [ 212, 213 ], [ 196, 214 ], [ 214, 215 ], [ 731, 216 ], [ 216, 217 ], [ 216, 218 ], [ 218, 219 ], [ 219, 220 ], [ 220, 221 ], [ 221, 222 ], [ 221, 223 ], [ 220, 224 ], [ 224, 225 ], [ 224, 226 ], [ 224, 227 ], [ 216, 228 ], [ 228, 229 ], [ 216, 230 ], [ 230, 231 ], [ 731, 232 ], [ 232, 233 ], [ 232, 234 ], [ 234, 235 ], [ 235, 236 ], [ 236, 237 ], [ 235, 238 ], [ 235, 239 ], [ 232, 240 ], [ 240, 241 ], [ 232, 242 ], [ 242, 243 ], [ 731, 244 ], [ 244, 245 ], [ 244, 246 ], [ 246, 247 ], [ 247, 248 ], [ 247, 249 ], [ 249, 250 ], [ 249, 251 ], [ 246, 252 ], [ 252, 253 ], [ 253, 254 ], [ 253, 255 ], [ 252, 256 ], [ 256, 257 ], [ 256, 258 ], [ 246, 259 ], [ 259, 260 ], [ 260, 261 ], [ 260, 262 ], [ 259, 263 ], [ 246, 264 ], [ 264, 265 ], [ 244, 266 ], [ 266, 267 ], [ 244, 268 ], [ 268, 269 ], [ 244, 270 ], [ 270, 271 ], [ 731, 272 ], [ 272, 273 ], [ 272, 274 ], [ 274, 275 ], [ 275, 276 ], [ 276, 277 ], [ 276, 278 ], [ 275, 279 ], [ 279, 280 ], [ 280, 281 ], [ 280, 282 ], [ 282, 283 ], [ 282, 284 ], [ 279, 285 ], [ 285, 286 ], [ 286, 287 ], [ 286, 288 ], [ 288, 289 ], [ 285, 290 ], [ 290, 291 ], [ 290, 292 ], [ 279, 293 ], [ 293, 294 ], [ 294, 295 ], [ 294, 296 ], [ 296, 297 ], [ 293, 298 ], [ 274, 299 ], [ 299, 300 ], [ 272, 301 ], [ 301, 302 ], [ 272, 303 ], [ 303, 304 ], [ 272, 305 ], [ 305, 306 ], [ 731, 307 ], [ 307, 308 ], [ 307, 309 ], [ 309, 310 ], [ 310, 311 ], [ 311, 312 ], [ 312, 313 ], [ 312, 314 ], [ 311, 315 ], [ 310, 316 ], [ 316, 317 ], [ 309, 318 ], [ 318, 319 ], [ 318, 320 ], [ 320, 321 ], [ 321, 322 ], [ 321, 323 ], [ 320, 324 ], [ 309, 325 ], [ 325, 326 ], [ 326, 327 ], [ 326, 328 ], [ 325, 329 ], [ 329, 330 ], [ 330, 331 ], [ 331, 332 ], [ 332, 333 ], [ 332, 334 ], [ 331, 335 ], [ 335, 336 ], [ 335, 337 ], [ 337, 338 ], [ 337, 339 ], [ 330, 340 ], [ 340, 341 ], [ 329, 342 ], [ 342, 343 ], [ 309, 344 ], [ 344, 345 ], [ 345, 346 ], [ 345, 347 ], [ 344, 348 ], [ 348, 349 ], [ 309, 350 ], [ 350, 351 ], [ 350, 352 ], [ 352, 353 ], [ 353, 354 ], [ 353, 355 ], [ 352, 356 ], [ 309, 357 ], [ 357, 358 ], [ 358, 359 ], [ 359, 360 ], [ 359, 361 ], [ 361, 362 ], [ 362, 363 ], [ 362, 364 ], [ 361, 365 ], [ 357, 366 ], [ 366, 367 ], [ 366, 368 ], [ 357, 369 ], [ 369, 370 ], [ 370, 371 ], [ 357, 372 ], [ 373, 373 ], [ 373, 374 ], [ 374, 375 ], [ 375, 376 ], [ 376, 377 ], [ 376, 378 ], [ 375, 379 ], [ 379, 380 ], [ 379, 381 ], [ 374, 382 ], [ 382, 383 ], [ 383, 384 ], [ 383, 385 ], [ 382, 386 ], [ 309, 387 ], [ 387, 388 ], [ 387, 389 ], [ 389, 390 ], [ 389, 391 ], [ 389, 392 ], [ 389, 393 ], [ 309, 394 ], [ 394, 395 ], [ 394, 396 ], [ 396, 397 ], [ 396, 398 ], [ 396, 399 ], [ 399, 400 ], [ 399, 401 ], [ 396, 402 ], [ 402, 403 ], [ 403, 404 ], [ 403, 405 ], [ 402, 406 ], [ 309, 407 ], [ 407, 408 ], [ 307, 409 ], [ 409, 410 ], [ 731, 411 ], [ 411, 412 ], [ 411, 413 ], [ 413, 414 ], [ 414, 415 ], [ 415, 416 ], [ 415, 417 ], [ 414, 418 ], [ 418, 419 ], [ 413, 420 ], [ 420, 421 ], [ 421, 422 ], [ 422, 423 ], [ 422, 424 ], [ 421, 425 ], [ 425, 426 ], [ 426, 427 ], [ 426, 428 ], [ 425, 429 ], [ 429, 430 ], [ 429, 431 ], [ 431, 432 ], [ 431, 433 ], [ 411, 434 ], [ 434, 435 ], [ 411, 436 ], [ 436, 437 ], [ 731, 438 ], [ 438, 439 ], [ 438, 440 ], [ 440, 441 ], [ 441, 442 ], [ 441, 443 ], [ 440, 444 ], [ 444, 445 ], [ 445, 446 ], [ 446, 447 ], [ 446, 448 ], [ 444, 449 ], [ 449, 450 ], [ 449, 451 ], [ 444, 452 ], [ 452, 453 ], [ 453, 454 ], [ 444, 455 ], [ 455, 456 ], [ 456, 457 ], [ 456, 458 ], [ 458, 459 ], [ 458, 460 ], [ 440, 461 ], [ 461, 462 ], [ 438, 463 ], [ 463, 464 ], [ 731, 465 ], [ 465, 466 ], [ 465, 467 ], [ 467, 468 ], [ 468, 469 ], [ 468, 470 ], [ 467, 471 ], [ 471, 472 ], [ 471, 473 ], [ 473, 474 ], [ 473, 475 ], [ 467, 476 ], [ 476, 477 ], [ 477, 478 ], [ 477, 479 ], [ 476, 480 ], [ 480, 481 ], [ 481, 482 ], [ 482, 483 ], [ 483, 484 ], [ 483, 485 ], [ 482, 486 ], [ 481, 487 ], [ 487, 488 ], [ 487, 489 ], [ 489, 490 ], [ 490, 491 ], [ 490, 492 ], [ 489, 493 ], [ 480, 494 ], [ 494, 495 ], [ 494, 496 ], [ 496, 497 ], [ 497, 498 ], [ 497, 499 ], [ 496, 500 ], [ 467, 501 ], [ 501, 502 ], [ 465, 503 ], [ 503, 504 ], [ 465, 505 ], [ 505, 506 ], [ 465, 507 ], [ 507, 508 ], [ 731, 509 ], [ 509, 510 ], [ 509, 511 ], [ 511, 512 ], [ 512, 513 ], [ 513, 514 ], [ 513, 515 ], [ 513, 516 ], [ 516, 517 ], [ 516, 518 ], [ 513, 519 ], [ 509, 520 ], [ 520, 521 ], [ 509, 522 ], [ 522, 523 ], [ 731, 524 ], [ 524, 525 ], [ 524, 526 ], [ 526, 527 ], [ 527, 528 ], [ 528, 529 ], [ 528, 530 ], [ 527, 531 ], [ 531, 532 ], [ 526, 533 ], [ 533, 534 ], [ 534, 535 ], [ 534, 536 ], [ 533, 537 ], [ 537, 538 ], [ 526, 539 ], [ 539, 540 ], [ 540, 541 ], [ 541, 542 ], [ 542, 543 ], [ 542, 544 ], [ 541, 545 ], [ 540, 546 ], [ 546, 547 ], [ 547, 548 ], [ 547, 549 ], [ 546, 550 ], [ 539, 551 ], [ 551, 552 ], [ 526, 553 ], [ 553, 554 ], [ 554, 555 ], [ 555, 556 ], [ 555, 557 ], [ 553, 558 ], [ 558, 559 ], [ 559, 560 ], [ 559, 561 ], [ 558, 562 ], [ 553, 563 ], [ 563, 564 ], [ 564, 565 ], [ 564, 566 ], [ 566, 567 ], [ 566, 568 ], [ 553, 569 ], [ 569, 570 ], [ 570, 571 ], [ 571, 572 ], [ 572, 573 ], [ 573, 574 ], [ 573, 575 ], [ 572, 576 ], [ 571, 577 ], [ 577, 578 ], [ 578, 579 ], [ 578, 580 ], [ 580, 581 ], [ 580, 582 ], [ 577, 583 ], [ 570, 584 ], [ 584, 585 ], [ 526, 586 ], [ 586, 587 ], [ 524, 588 ], [ 588, 589 ], [ 731, 590 ], [ 590, 591 ], [ 590, 592 ], [ 592, 593 ], [ 593, 594 ], [ 593, 595 ], [ 592, 596 ], [ 596, 597 ], [ 596, 598 ], [ 592, 599 ], [ 599, 600 ], [ 599, 601 ], [ 601, 602 ], [ 602, 603 ], [ 601, 604 ], [ 592, 605 ], [ 605, 606 ], [ 605, 607 ], [ 607, 608 ], [ 608, 609 ], [ 607, 610 ], [ 592, 611 ], [ 611, 612 ], [ 611, 613 ], [ 613, 614 ], [ 614, 615 ], [ 613, 616 ], [ 592, 617 ], [ 617, 618 ], [ 590, 619 ], [ 619, 620 ], [ 590, 621 ], [ 621, 622 ], [ 731, 623 ], [ 623, 624 ], [ 623, 625 ], [ 625, 626 ], [ 623, 627 ], [ 627, 628 ], [ 623, 629 ], [ 629, 630 ], [ 629, 631 ], [ 631, 632 ], [ 632, 633 ], [ 632, 634 ], [ 623, 635 ], [ 635, 636 ], [ 635, 637 ], [ 637, 638 ], [ 638, 639 ], [ 639, 640 ], [ 640, 641 ], [ 640, 642 ], [ 639, 643 ], [ 643, 644 ], [ 644, 645 ], [ 645, 646 ], [ 638, 647 ], [ 647, 648 ], [ 648, 649 ], [ 649, 650 ], [ 649, 651 ], [ 651, 652 ], [ 652, 653 ], [ 653, 654 ], [ 648, 655 ], [ 655, 656 ], [ 656, 657 ], [ 656, 658 ], [ 637, 659 ], [ 659, 660 ], [ 660, 661 ], [ 661, 662 ], [ 623, 663 ], [ 663, 664 ], [ 663, 665 ], [ 665, 666 ], [ 666, 667 ], [ 667, 668 ], [ 668, 669 ], [ 667, 670 ], [ 670, 671 ], [ 623, 672 ], [ 672, 673 ], [ 672, 674 ], [ 674, 675 ], [ 675, 676 ], [ 676, 677 ], [ 677, 678 ], [ 676, 679 ], [ 679, 680 ], [ 623, 681 ], [ 681, 682 ], [ 681, 683 ], [ 683, 684 ], [ 684, 685 ], [ 685, 686 ], [ 686, 687 ], [ 685, 688 ], [ 688, 689 ], [ 623, 690 ], [ 690, 691 ], [ 690, 692 ], [ 692, 693 ], [ 693, 694 ], [ 693, 695 ], [ 692, 696 ], [ 696, 697 ], [ 697, 698 ], [ 697, 699 ], [ 699, 700 ], [ 700, 701 ], [ 701, 702 ], [ 696, 703 ], [ 703, 704 ], [ 704, 705 ], [ 704, 706 ], [ 706, 707 ], [ 707, 708 ], [ 692, 709 ], [ 709, 710 ], [ 731, 711 ], [ 711, 712 ], [ 711, 713 ], [ 713, 714 ], [ 711, 715 ], [ 715, 716 ], [ 711, 717 ], [ 717, 718 ], [ 717, 719 ], [ 719, 720 ], [ 720, 721 ], [ 720, 722 ], [ 719, 723 ], [ 723, 724 ], [ 723, 725 ], [ 717, 726 ], [ 726, 727 ], [ 717, 728 ], [ 728, 729 ], [ 0, 730 ], [ 730, 731 ], [ 730, 732 ] ]
[ "import java.io.*;\nimport java.math.BigDecimal;\nimport java.math.BigInteger;\nimport java.util.*;\n \npublic class Main {\n\tstatic final int INF = (int) (1e9 + 10);\n\tstatic final int MOD = (int) (1e9 + 7);\n \n\t// static final int N = (int) (4e5 + 5);\n\t// static ArrayList<Integer>[] graph;\n\t// static boolean visited[];\n\t// static long size[];\n \n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\tFastReader sc = new FastReader();\n\t\tPrintWriter pr = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n// \t\tint t = sc.nextInt();\n\t\t\n// \t\twhile (t-- > 0) {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0){\n\t\t\t pr.println(1);\n\t\t\t}else{\n\t\t\t pr.println(0);\n\t\t\t}\n\t\t\t\n\t\t\t\n// \t\t\tpr.println(ans);\n \n// \t\t}\n\t\tpr.flush();\n\t\tpr.close();\n\t}\n \n\t\n\tprivate static boolean possible(long[] arr, int[] f, long mid, long k) {\n\t\tlong c = 0;\n \n\t\tfor (int i = 0; i < arr.length; i++) {\n\t\t\tif ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}\n\t\t}\n\t\t// System.out.println(mid+\" \"+c);\n\t\tif (c <= k)\n\t\t\treturn true;\n\t\treturn false;\n\t}\n \n\tpublic static int lowerBound(ArrayList<Integer> array, int length, long value) {\n\t\tint low = 0;\n\t\tint high = length;\n\t\twhile (low < high) {\n\t\t\tfinal int mid = (low + high) / 2;\n\t\t\tif (value <= array.get(mid)) {\n\t\t\t\thigh = mid;\n\t\t\t} else {\n\t\t\t\tlow = mid + 1;\n\t\t\t}\n\t\t}\n\t\treturn low;\n\t}\n \n\tstatic class FastReader {\n\t\tBufferedReader br;\n\t\tStringTokenizer st;\n \n\t\tpublic FastReader() {\n\t\t\tbr = new BufferedReader(new InputStreamReader(System.in));\n\t\t}\n \n\t\tString next() {\n\t\t\twhile (st == null || !st.hasMoreElements()) {\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n \n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n \n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n \n\t\tdouble nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tString nextLine() {\n\t\t\tString str = \"\";\n\t\t\ttry {\n\t\t\t\tstr = br.readLine();\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\treturn str;\n\t\t}\n\t}\n \n\tstatic long gcd(long a, long b) {\n\t\tif (a == 0)\n\t\t\treturn b;\n\t\treturn gcd(b % a, a);\n\t}\n \n\tstatic long lcm(long a, long b) {\n\t\treturn (a * b) / gcd(a, b);\n\t}\n \n\tpublic static void sortbyColumn(int[][] att, int col) {\n\t\t// Using built-in sort function Arrays.sort\n\t\tArrays.sort(att, new Comparator<int[]>() {\n \n\t\t\t@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}\n\t\t}); // End of function call sort().\n\t}\n \n\tstatic class pair {\n\t\tint V, I;\n \n\t\tpair(int v, int i) {\n\t\t\tV = v;\n\t\t\tI = i;\n\t\t}\n\t}\n \n\tpublic static int[] swap(int data[], int left, int right) {\n\t\tint temp = data[left];\n\t\tdata[left] = data[right];\n\t\tdata[right] = temp;\n\t\treturn data;\n\t}\n \n\tpublic static int[] reverse(int data[], int left, int right) {\n\t\twhile (left < right) {\n\t\t\tint temp = data[left];\n\t\t\tdata[left++] = data[right];\n\t\t\tdata[right--] = temp;\n\t\t}\n\t\treturn data;\n\t}\n \n\tpublic static boolean findNextPermutation(int data[]) {\n\t\tif (data.length <= 1)\n\t\t\treturn false;\n \n\t\tint last = data.length - 2;\n\t\twhile (last >= 0) {\n\t\t\tif (data[last] < data[last + 1]) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tlast--;\n\t\t}\n\t\tif (last < 0)\n\t\t\treturn false;\n \n\t\tint nextGreater = data.length - 1;\n\t\tfor (int i = data.length - 1; i > last; i--) {\n\t\t\tif (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tdata = swap(data, nextGreater, last);\n\t\tdata = reverse(data, last + 1, data.length - 1);\n\t\treturn true;\n\t}\n \n\tstatic long nCr(long n, long r) {\n\t\tif (n == r)\n\t\t\treturn 1;\n\t\treturn fact(n) / (fact(r) * fact(n - r));\n\t}\n \n\tstatic long fact(long n) {\n\t\tlong res = 1;\n\t\tfor (long i = 2; i <= n; i++)\n\t\t\tres = res * i;\n\t\treturn res;\n\t}\n \n\t/*\n\t * static boolean prime[] = new boolean[1000007];\n\t * \n\t * public static void sieveOfEratosthenes(int n) {\n\t * \n\t * for (int i = 0; i < n; i++) prime[i] = true; * for (int p = 2; p * p <=\n\t * n; p++) { // If prime[p] is not changed, then it is a prime if (prime[p]\n\t * == true) { // Update all multiples of p for (int i = p * p; i <= n; i +=\n\t * p) prime[i] = false; } }\n\t * \n\t * // Print all prime numbers // for(int i = 2; i <= n; i++) // { //\n\t * if(prime[i] == true) // System.out.print(i + \" \"); // } }\n\t */\n \n\tstatic long power(long fac2, int y, int p) {\n\t\tlong res = 1;\n\t\tfac2 = fac2 % p;\n\t\twhile (y > 0) {\n\t\t\tif (y % 2 == 1)\n\t\t\t\tres = (res * fac2) % p;\n\t\t\tfac2 = (fac2 * fac2) % p;\n\t\t}\n\t\treturn res;\n\t}\n \n\tstatic long modInverse(long fac2, int p) {\n\t\treturn power(fac2, p - 2, p);\n\t}\n \n\tstatic boolean isPrime(int n) {\n\t\t// Corner cases\n\t\tif (n <= 1)\n\t\t\treturn false;\n\t\tif (n <= 3)\n\t\t\treturn true;\n \n\t\t// This is checked so that we can skip\n\t\t// middle five numbers in below loop\n\t\tif (n % 2 == 0 || n % 3 == 0)\n\t\t\treturn false;\n \n\t\tfor (int i = 5; i * i <= n; i = i + 6)\n\t\t\tif (n % i == 0 || n % (i + 2) == 0)\n\t\t\t\treturn false;\n \n\t\treturn true;\n\t}\n \n\tpublic static BigInteger lcmm(String a, String b) {\n\t\tBigInteger s = new BigInteger(a);\n\t\tBigInteger s1 = new BigInteger(b);\n\t\tBigInteger mul = s.multiply(s1);\n\t\tBigInteger gcd = s.gcd(s1);\n\t\tBigInteger lcm = mul.divide(gcd);\n\t\treturn lcm;\n\t}\n \n}", "Comparator<int[]>() {\n \n\t\t\t@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}\n\t\t}", "@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}", "compare", "{\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}", "return new Integer(entry1[col]).compareTo(entry2[col]);", "new Integer(entry1[col]).compareTo(entry2[col])", "new Integer(entry1[col]).compareTo", "new Integer(entry1[col])", "entry2[col]", "entry2", "col", "final int[] entry1", "entry1", "final int[] entry2", "entry2", "import java.io.*;", "io.*", "java", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.math.BigInteger;", "BigInteger", "java.math", "import java.util.*;", "util.*", "java", "public class Main {\n\tstatic final int INF = (int) (1e9 + 10);\n\tstatic final int MOD = (int) (1e9 + 7);\n \n\t// static final int N = (int) (4e5 + 5);\n\t// static ArrayList<Integer>[] graph;\n\t// static boolean visited[];\n\t// static long size[];\n \n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\tFastReader sc = new FastReader();\n\t\tPrintWriter pr = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n// \t\tint t = sc.nextInt();\n\t\t\n// \t\twhile (t-- > 0) {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0){\n\t\t\t pr.println(1);\n\t\t\t}else{\n\t\t\t pr.println(0);\n\t\t\t}\n\t\t\t\n\t\t\t\n// \t\t\tpr.println(ans);\n \n// \t\t}\n\t\tpr.flush();\n\t\tpr.close();\n\t}\n \n\t\n\tprivate static boolean possible(long[] arr, int[] f, long mid, long k) {\n\t\tlong c = 0;\n \n\t\tfor (int i = 0; i < arr.length; i++) {\n\t\t\tif ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}\n\t\t}\n\t\t// System.out.println(mid+\" \"+c);\n\t\tif (c <= k)\n\t\t\treturn true;\n\t\treturn false;\n\t}\n \n\tpublic static int lowerBound(ArrayList<Integer> array, int length, long value) {\n\t\tint low = 0;\n\t\tint high = length;\n\t\twhile (low < high) {\n\t\t\tfinal int mid = (low + high) / 2;\n\t\t\tif (value <= array.get(mid)) {\n\t\t\t\thigh = mid;\n\t\t\t} else {\n\t\t\t\tlow = mid + 1;\n\t\t\t}\n\t\t}\n\t\treturn low;\n\t}\n \n\tstatic class FastReader {\n\t\tBufferedReader br;\n\t\tStringTokenizer st;\n \n\t\tpublic FastReader() {\n\t\t\tbr = new BufferedReader(new InputStreamReader(System.in));\n\t\t}\n \n\t\tString next() {\n\t\t\twhile (st == null || !st.hasMoreElements()) {\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n \n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n \n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n \n\t\tdouble nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tString nextLine() {\n\t\t\tString str = \"\";\n\t\t\ttry {\n\t\t\t\tstr = br.readLine();\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\treturn str;\n\t\t}\n\t}\n \n\tstatic long gcd(long a, long b) {\n\t\tif (a == 0)\n\t\t\treturn b;\n\t\treturn gcd(b % a, a);\n\t}\n \n\tstatic long lcm(long a, long b) {\n\t\treturn (a * b) / gcd(a, b);\n\t}\n \n\tpublic static void sortbyColumn(int[][] att, int col) {\n\t\t// Using built-in sort function Arrays.sort\n\t\tArrays.sort(att, new Comparator<int[]>() {\n \n\t\t\t@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}\n\t\t}); // End of function call sort().\n\t}\n \n\tstatic class pair {\n\t\tint V, I;\n \n\t\tpair(int v, int i) {\n\t\t\tV = v;\n\t\t\tI = i;\n\t\t}\n\t}\n \n\tpublic static int[] swap(int data[], int left, int right) {\n\t\tint temp = data[left];\n\t\tdata[left] = data[right];\n\t\tdata[right] = temp;\n\t\treturn data;\n\t}\n \n\tpublic static int[] reverse(int data[], int left, int right) {\n\t\twhile (left < right) {\n\t\t\tint temp = data[left];\n\t\t\tdata[left++] = data[right];\n\t\t\tdata[right--] = temp;\n\t\t}\n\t\treturn data;\n\t}\n \n\tpublic static boolean findNextPermutation(int data[]) {\n\t\tif (data.length <= 1)\n\t\t\treturn false;\n \n\t\tint last = data.length - 2;\n\t\twhile (last >= 0) {\n\t\t\tif (data[last] < data[last + 1]) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tlast--;\n\t\t}\n\t\tif (last < 0)\n\t\t\treturn false;\n \n\t\tint nextGreater = data.length - 1;\n\t\tfor (int i = data.length - 1; i > last; i--) {\n\t\t\tif (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tdata = swap(data, nextGreater, last);\n\t\tdata = reverse(data, last + 1, data.length - 1);\n\t\treturn true;\n\t}\n \n\tstatic long nCr(long n, long r) {\n\t\tif (n == r)\n\t\t\treturn 1;\n\t\treturn fact(n) / (fact(r) * fact(n - r));\n\t}\n \n\tstatic long fact(long n) {\n\t\tlong res = 1;\n\t\tfor (long i = 2; i <= n; i++)\n\t\t\tres = res * i;\n\t\treturn res;\n\t}\n \n\t/*\n\t * static boolean prime[] = new boolean[1000007];\n\t * \n\t * public static void sieveOfEratosthenes(int n) {\n\t * \n\t * for (int i = 0; i < n; i++) prime[i] = true; * for (int p = 2; p * p <=\n\t * n; p++) { // If prime[p] is not changed, then it is a prime if (prime[p]\n\t * == true) { // Update all multiples of p for (int i = p * p; i <= n; i +=\n\t * p) prime[i] = false; } }\n\t * \n\t * // Print all prime numbers // for(int i = 2; i <= n; i++) // { //\n\t * if(prime[i] == true) // System.out.print(i + \" \"); // } }\n\t */\n \n\tstatic long power(long fac2, int y, int p) {\n\t\tlong res = 1;\n\t\tfac2 = fac2 % p;\n\t\twhile (y > 0) {\n\t\t\tif (y % 2 == 1)\n\t\t\t\tres = (res * fac2) % p;\n\t\t\tfac2 = (fac2 * fac2) % p;\n\t\t}\n\t\treturn res;\n\t}\n \n\tstatic long modInverse(long fac2, int p) {\n\t\treturn power(fac2, p - 2, p);\n\t}\n \n\tstatic boolean isPrime(int n) {\n\t\t// Corner cases\n\t\tif (n <= 1)\n\t\t\treturn false;\n\t\tif (n <= 3)\n\t\t\treturn true;\n \n\t\t// This is checked so that we can skip\n\t\t// middle five numbers in below loop\n\t\tif (n % 2 == 0 || n % 3 == 0)\n\t\t\treturn false;\n \n\t\tfor (int i = 5; i * i <= n; i = i + 6)\n\t\t\tif (n % i == 0 || n % (i + 2) == 0)\n\t\t\t\treturn false;\n \n\t\treturn true;\n\t}\n \n\tpublic static BigInteger lcmm(String a, String b) {\n\t\tBigInteger s = new BigInteger(a);\n\t\tBigInteger s1 = new BigInteger(b);\n\t\tBigInteger mul = s.multiply(s1);\n\t\tBigInteger gcd = s.gcd(s1);\n\t\tBigInteger lcm = mul.divide(gcd);\n\t\treturn lcm;\n\t}\n \n}", "Main", "static final int INF = (int) (1e9 + 10);", "INF", "(int) (1e9 + 10)", "1e9", "10", "static final int MOD = (int) (1e9 + 7);", "MOD", "(int) (1e9 + 7)", "1e9", "7", "public static void main(String[] args) throws NumberFormatException, IOException {\n\t\tFastReader sc = new FastReader();\n\t\tPrintWriter pr = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n// \t\tint t = sc.nextInt();\n\t\t\n// \t\twhile (t-- > 0) {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0){\n\t\t\t pr.println(1);\n\t\t\t}else{\n\t\t\t pr.println(0);\n\t\t\t}\n\t\t\t\n\t\t\t\n// \t\t\tpr.println(ans);\n \n// \t\t}\n\t\tpr.flush();\n\t\tpr.close();\n\t}", "main", "{\n\t\tFastReader sc = new FastReader();\n\t\tPrintWriter pr = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n// \t\tint t = sc.nextInt();\n\t\t\n// \t\twhile (t-- > 0) {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0){\n\t\t\t pr.println(1);\n\t\t\t}else{\n\t\t\t pr.println(0);\n\t\t\t}\n\t\t\t\n\t\t\t\n// \t\t\tpr.println(ans);\n \n// \t\t}\n\t\tpr.flush();\n\t\tpr.close();\n\t}", "FastReader sc = new FastReader();", "sc", "new FastReader()", "PrintWriter pr = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));", "pr", "new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)))", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "int n = sc.nextInt();", "n", "sc.nextInt()", "sc.nextInt", "sc", "if(n == 0){\n\t\t\t pr.println(1);\n\t\t\t}else{\n\t\t\t pr.println(0);\n\t\t\t}", "n == 0", "n", "0", "{\n\t\t\t pr.println(1);\n\t\t\t}", "pr.println(1)", "pr.println", "pr", "1", "{\n\t\t\t pr.println(0);\n\t\t\t}", "pr.println(0)", "pr.println", "pr", "0", "pr.flush()", "pr.flush", "pr", "pr.close()", "pr.close", "pr", "String[] args", "args", "private static boolean possible(long[] arr, int[] f, long mid, long k) {\n\t\tlong c = 0;\n \n\t\tfor (int i = 0; i < arr.length; i++) {\n\t\t\tif ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}\n\t\t}\n\t\t// System.out.println(mid+\" \"+c);\n\t\tif (c <= k)\n\t\t\treturn true;\n\t\treturn false;\n\t}", "possible", "{\n\t\tlong c = 0;\n \n\t\tfor (int i = 0; i < arr.length; i++) {\n\t\t\tif ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}\n\t\t}\n\t\t// System.out.println(mid+\" \"+c);\n\t\tif (c <= k)\n\t\t\treturn true;\n\t\treturn false;\n\t}", "long c = 0;", "c", "0", "for (int i = 0; i < arr.length; i++) {\n\t\t\tif ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}\n\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < arr.length", "i", "arr.length", "arr", "arr.length", "i++", "i++", "i", "{\n\t\t\tif ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}\n\t\t}", "{\n\t\t\tif ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}\n\t\t}", "if ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}", "(arr[i] * f[f.length - i - 1]) > mid", "(arr[i] * f[f.length - i - 1])", "arr[i]", "arr", "i", "f[f.length - i - 1]", "f", "f.length - i - 1", "f.length - i - 1", "f.length", "f", "f.length", "i", "1", "mid", "{\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}", "c += (arr[i] - (mid / f[f.length - i - 1]))", "c", "(arr[i] - (mid / f[f.length - i - 1]))", "arr[i]", "arr", "i", "(mid / f[f.length - i - 1])", "mid", "f[f.length - i - 1]", "f", "f.length - i - 1", "f.length - i - 1", "f.length", "f", "f.length", "i", "1", "if (c <= k)\n\t\t\treturn true;", "c <= k", "c", "k", "return true;", "true", "return false;", "false", "long[] arr", "arr", "int[] f", "f", "long mid", "mid", "long k", "k", "public static int lowerBound(ArrayList<Integer> array, int length, long value) {\n\t\tint low = 0;\n\t\tint high = length;\n\t\twhile (low < high) {\n\t\t\tfinal int mid = (low + high) / 2;\n\t\t\tif (value <= array.get(mid)) {\n\t\t\t\thigh = mid;\n\t\t\t} else {\n\t\t\t\tlow = mid + 1;\n\t\t\t}\n\t\t}\n\t\treturn low;\n\t}", "lowerBound", "{\n\t\tint low = 0;\n\t\tint high = length;\n\t\twhile (low < high) {\n\t\t\tfinal int mid = (low + high) / 2;\n\t\t\tif (value <= array.get(mid)) {\n\t\t\t\thigh = mid;\n\t\t\t} else {\n\t\t\t\tlow = mid + 1;\n\t\t\t}\n\t\t}\n\t\treturn low;\n\t}", "int low = 0;", "low", "0", "int high = length;", "high", "length", "while (low < high) {\n\t\t\tfinal int mid = (low + high) / 2;\n\t\t\tif (value <= array.get(mid)) {\n\t\t\t\thigh = mid;\n\t\t\t} else {\n\t\t\t\tlow = mid + 1;\n\t\t\t}\n\t\t}", "low < high", "low", "high", "{\n\t\t\tfinal int mid = (low + high) / 2;\n\t\t\tif (value <= array.get(mid)) {\n\t\t\t\thigh = mid;\n\t\t\t} else {\n\t\t\t\tlow = mid + 1;\n\t\t\t}\n\t\t}", "final int mid = (low + high) / 2;", "mid", "(low + high) / 2", "(low + high)", "low", "high", "2", "if (value <= array.get(mid)) {\n\t\t\t\thigh = mid;\n\t\t\t} else {\n\t\t\t\tlow = mid + 1;\n\t\t\t}", "value <= array.get(mid)", "value", "array.get(mid)", "array.get", "array", "mid", "{\n\t\t\t\thigh = mid;\n\t\t\t}", "high = mid", "high", "mid", "{\n\t\t\t\tlow = mid + 1;\n\t\t\t}", "low = mid + 1", "low", "mid + 1", "mid", "1", "return low;", "low", "ArrayList<Integer> array", "array", "int length", "length", "long value", "value", "static long gcd(long a, long b) {\n\t\tif (a == 0)\n\t\t\treturn b;\n\t\treturn gcd(b % a, a);\n\t}", "gcd", "{\n\t\tif (a == 0)\n\t\t\treturn b;\n\t\treturn gcd(b % a, a);\n\t}", "if (a == 0)\n\t\t\treturn b;", "a == 0", "a", "0", "return b;", "b", "return gcd(b % a, a);", "gcd(b % a, a)", "gcd", "b % a", "b", "a", "a", "long a", "a", "long b", "b", "static long lcm(long a, long b) {\n\t\treturn (a * b) / gcd(a, b);\n\t}", "lcm", "{\n\t\treturn (a * b) / gcd(a, b);\n\t}", "return (a * b) / gcd(a, b);", "(a * b) / gcd(a, b)", "(a * b)", "a", "b", "gcd(a, b)", "gcd", "a", "b", "long a", "a", "long b", "b", "public static void sortbyColumn(int[][] att, int col) {\n\t\t// Using built-in sort function Arrays.sort\n\t\tArrays.sort(att, new Comparator<int[]>() {\n \n\t\t\t@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}\n\t\t}); // End of function call sort().\n\t}", "sortbyColumn", "{\n\t\t// Using built-in sort function Arrays.sort\n\t\tArrays.sort(att, new Comparator<int[]>() {\n \n\t\t\t@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}\n\t\t}); // End of function call sort().\n\t}", "Arrays.sort(att, new Comparator<int[]>() {\n \n\t\t\t@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}\n\t\t})", "Arrays.sort", "Arrays", "att", "new Comparator<int[]>() {\n \n\t\t\t@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}\n\t\t}", "int[][] att", "att", "int col", "col", "public static int[] swap(int data[], int left, int right) {\n\t\tint temp = data[left];\n\t\tdata[left] = data[right];\n\t\tdata[right] = temp;\n\t\treturn data;\n\t}", "swap", "{\n\t\tint temp = data[left];\n\t\tdata[left] = data[right];\n\t\tdata[right] = temp;\n\t\treturn data;\n\t}", "int temp = data[left];", "temp", "data[left]", "data", "left", "data[left] = data[right]", "data[left]", "data", "left", "data[right]", "data", "right", "data[right] = temp", "data[right]", "data", "right", "temp", "return data;", "data", "int data[]", "data", "int left", "left", "int right", "right", "public static int[] reverse(int data[], int left, int right) {\n\t\twhile (left < right) {\n\t\t\tint temp = data[left];\n\t\t\tdata[left++] = data[right];\n\t\t\tdata[right--] = temp;\n\t\t}\n\t\treturn data;\n\t}", "reverse", "{\n\t\twhile (left < right) {\n\t\t\tint temp = data[left];\n\t\t\tdata[left++] = data[right];\n\t\t\tdata[right--] = temp;\n\t\t}\n\t\treturn data;\n\t}", "while (left < right) {\n\t\t\tint temp = data[left];\n\t\t\tdata[left++] = data[right];\n\t\t\tdata[right--] = temp;\n\t\t}", "left < right", "left", "right", "{\n\t\t\tint temp = data[left];\n\t\t\tdata[left++] = data[right];\n\t\t\tdata[right--] = temp;\n\t\t}", "int temp = data[left];", "temp", "data[left]", "data", "left", "data[left++] = data[right]", "data[left++]", "data", "left++", "left", "data[right]", "data", "right", "data[right--] = temp", "data[right--]", "data", "right--", "right", "temp", "return data;", "data", "int data[]", "data", "int left", "left", "int right", "right", "public static boolean findNextPermutation(int data[]) {\n\t\tif (data.length <= 1)\n\t\t\treturn false;\n \n\t\tint last = data.length - 2;\n\t\twhile (last >= 0) {\n\t\t\tif (data[last] < data[last + 1]) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tlast--;\n\t\t}\n\t\tif (last < 0)\n\t\t\treturn false;\n \n\t\tint nextGreater = data.length - 1;\n\t\tfor (int i = data.length - 1; i > last; i--) {\n\t\t\tif (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tdata = swap(data, nextGreater, last);\n\t\tdata = reverse(data, last + 1, data.length - 1);\n\t\treturn true;\n\t}", "findNextPermutation", "{\n\t\tif (data.length <= 1)\n\t\t\treturn false;\n \n\t\tint last = data.length - 2;\n\t\twhile (last >= 0) {\n\t\t\tif (data[last] < data[last + 1]) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tlast--;\n\t\t}\n\t\tif (last < 0)\n\t\t\treturn false;\n \n\t\tint nextGreater = data.length - 1;\n\t\tfor (int i = data.length - 1; i > last; i--) {\n\t\t\tif (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tdata = swap(data, nextGreater, last);\n\t\tdata = reverse(data, last + 1, data.length - 1);\n\t\treturn true;\n\t}", "if (data.length <= 1)\n\t\t\treturn false;", "data.length <= 1", "data.length", "data", "data.length", "1", "return false;", "false", "int last = data.length - 2;", "last", "data.length - 2", "data.length", "data", "data.length", "2", "while (last >= 0) {\n\t\t\tif (data[last] < data[last + 1]) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tlast--;\n\t\t}", "last >= 0", "last", "0", "{\n\t\t\tif (data[last] < data[last + 1]) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tlast--;\n\t\t}", "if (data[last] < data[last + 1]) {\n\t\t\t\tbreak;\n\t\t\t}", "data[last] < data[last + 1]", "data[last]", "data", "last", "data[last + 1]", "data", "last + 1", "last", "1", "{\n\t\t\t\tbreak;\n\t\t\t}", "break;", "last--", "last", "if (last < 0)\n\t\t\treturn false;", "last < 0", "last", "0", "return false;", "false", "int nextGreater = data.length - 1;", "nextGreater", "data.length - 1", "data.length", "data", "data.length", "1", "for (int i = data.length - 1; i > last; i--) {\n\t\t\tif (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}", "int i = data.length - 1;", "int i = data.length - 1;", "i", "data.length - 1", "data.length", "data", "data.length", "1", "i > last", "i", "last", "i--", "i--", "i", "{\n\t\t\tif (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}", "{\n\t\t\tif (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}", "if (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}", "data[i] > data[last]", "data[i]", "data", "i", "data[last]", "data", "last", "{\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}", "nextGreater = i", "nextGreater", "i", "break;", "data = swap(data, nextGreater, last)", "data", "swap(data, nextGreater, last)", "swap", "data", "nextGreater", "last", "data = reverse(data, last + 1, data.length - 1)", "data", "reverse(data, last + 1, data.length - 1)", "reverse", "data", "last + 1", "last", "1", "data.length - 1", "data.length", "data", "data.length", "1", "return true;", "true", "int data[]", "data", "static long nCr(long n, long r) {\n\t\tif (n == r)\n\t\t\treturn 1;\n\t\treturn fact(n) / (fact(r) * fact(n - r));\n\t}", "nCr", "{\n\t\tif (n == r)\n\t\t\treturn 1;\n\t\treturn fact(n) / (fact(r) * fact(n - r));\n\t}", "if (n == r)\n\t\t\treturn 1;", "n == r", "n", "r", "return 1;", "1", "return fact(n) / (fact(r) * fact(n - r));", "fact(n) / (fact(r) * fact(n - r))", "fact(n)", "fact", "n", "(fact(r) * fact(n - r))", "fact(r)", "fact", "r", "fact(n - r)", "fact", "n - r", "n", "r", "long n", "n", "long r", "r", "static long fact(long n) {\n\t\tlong res = 1;\n\t\tfor (long i = 2; i <= n; i++)\n\t\t\tres = res * i;\n\t\treturn res;\n\t}", "fact", "{\n\t\tlong res = 1;\n\t\tfor (long i = 2; i <= n; i++)\n\t\t\tres = res * i;\n\t\treturn res;\n\t}", "long res = 1;", "res", "1", "for (long i = 2; i <= n; i++)\n\t\t\tres = res * i;", "long i = 2;", "long i = 2;", "i", "2", "i <= n", "i", "n", "i++", "i++", "i", "res = res * i;", "res = res * i", "res", "res * i", "res", "i", "return res;", "res", "long n", "n", "static long power(long fac2, int y, int p) {\n\t\tlong res = 1;\n\t\tfac2 = fac2 % p;\n\t\twhile (y > 0) {\n\t\t\tif (y % 2 == 1)\n\t\t\t\tres = (res * fac2) % p;\n\t\t\tfac2 = (fac2 * fac2) % p;\n\t\t}\n\t\treturn res;\n\t}", "power", "{\n\t\tlong res = 1;\n\t\tfac2 = fac2 % p;\n\t\twhile (y > 0) {\n\t\t\tif (y % 2 == 1)\n\t\t\t\tres = (res * fac2) % p;\n\t\t\tfac2 = (fac2 * fac2) % p;\n\t\t}\n\t\treturn res;\n\t}", "long res = 1;", "res", "1", "fac2 = fac2 % p", "fac2", "fac2 % p", "fac2", "p", "while (y > 0) {\n\t\t\tif (y % 2 == 1)\n\t\t\t\tres = (res * fac2) % p;\n\t\t\tfac2 = (fac2 * fac2) % p;\n\t\t}", "y > 0", "y", "0", "{\n\t\t\tif (y % 2 == 1)\n\t\t\t\tres = (res * fac2) % p;\n\t\t\tfac2 = (fac2 * fac2) % p;\n\t\t}", "if (y % 2 == 1)\n\t\t\t\tres = (res * fac2) % p;", "y % 2 == 1", "y % 2", "y", "2", "1", "res = (res * fac2) % p", "res", "(res * fac2) % p", "(res * fac2)", "res", "fac2", "p", "fac2 = (fac2 * fac2) % p", "fac2", "(fac2 * fac2) % p", "(fac2 * fac2)", "fac2", "fac2", "p", "return res;", "res", "long fac2", "fac2", "int y", "y", "int p", "p", "static long modInverse(long fac2, int p) {\n\t\treturn power(fac2, p - 2, p);\n\t}", "modInverse", "{\n\t\treturn power(fac2, p - 2, p);\n\t}", "return power(fac2, p - 2, p);", "power(fac2, p - 2, p)", "power", "fac2", "p - 2", "p", "2", "p", "long fac2", "fac2", "int p", "p", "static boolean isPrime(int n) {\n\t\t// Corner cases\n\t\tif (n <= 1)\n\t\t\treturn false;\n\t\tif (n <= 3)\n\t\t\treturn true;\n \n\t\t// This is checked so that we can skip\n\t\t// middle five numbers in below loop\n\t\tif (n % 2 == 0 || n % 3 == 0)\n\t\t\treturn false;\n \n\t\tfor (int i = 5; i * i <= n; i = i + 6)\n\t\t\tif (n % i == 0 || n % (i + 2) == 0)\n\t\t\t\treturn false;\n \n\t\treturn true;\n\t}", "isPrime", "{\n\t\t// Corner cases\n\t\tif (n <= 1)\n\t\t\treturn false;\n\t\tif (n <= 3)\n\t\t\treturn true;\n \n\t\t// This is checked so that we can skip\n\t\t// middle five numbers in below loop\n\t\tif (n % 2 == 0 || n % 3 == 0)\n\t\t\treturn false;\n \n\t\tfor (int i = 5; i * i <= n; i = i + 6)\n\t\t\tif (n % i == 0 || n % (i + 2) == 0)\n\t\t\t\treturn false;\n \n\t\treturn true;\n\t}", "if (n <= 1)\n\t\t\treturn false;", "n <= 1", "n", "1", "return false;", "false", "if (n <= 3)\n\t\t\treturn true;", "n <= 3", "n", "3", "return true;", "true", "if (n % 2 == 0 || n % 3 == 0)\n\t\t\treturn false;", "n % 2 == 0 || n % 3 == 0", "n % 2 == 0", "n % 2", "n", "2", "0", "n % 3 == 0", "n % 3", "n", "3", "0", "return false;", "false", "for (int i = 5; i * i <= n; i = i + 6)\n\t\t\tif (n % i == 0 || n % (i + 2) == 0)\n\t\t\t\treturn false;", "int i = 5;", "int i = 5;", "i", "5", "i * i <= n", "i * i", "i", "i", "n", "i = i + 6", "i = i + 6", "i", "i + 6", "i", "6", "if (n % i == 0 || n % (i + 2) == 0)\n\t\t\t\treturn false;", "if (n % i == 0 || n % (i + 2) == 0)\n\t\t\t\treturn false;", "n % i == 0 || n % (i + 2) == 0", "n % i == 0", "n % i", "n", "i", "0", "n % (i + 2) == 0", "n % (i + 2)", "n", "(i + 2)", "i", "2", "0", "return false;", "false", "return true;", "true", "int n", "n", "public static BigInteger lcmm(String a, String b) {\n\t\tBigInteger s = new BigInteger(a);\n\t\tBigInteger s1 = new BigInteger(b);\n\t\tBigInteger mul = s.multiply(s1);\n\t\tBigInteger gcd = s.gcd(s1);\n\t\tBigInteger lcm = mul.divide(gcd);\n\t\treturn lcm;\n\t}", "lcmm", "{\n\t\tBigInteger s = new BigInteger(a);\n\t\tBigInteger s1 = new BigInteger(b);\n\t\tBigInteger mul = s.multiply(s1);\n\t\tBigInteger gcd = s.gcd(s1);\n\t\tBigInteger lcm = mul.divide(gcd);\n\t\treturn lcm;\n\t}", "BigInteger s = new BigInteger(a);", "s", "new BigInteger(a)", "BigInteger s1 = new BigInteger(b);", "s1", "new BigInteger(b)", "BigInteger mul = s.multiply(s1);", "mul", "s.multiply(s1)", "s.multiply", "s", "s1", "BigInteger gcd = s.gcd(s1);", "gcd", "s.gcd(s1)", "s.gcd", "s", "s1", "BigInteger lcm = mul.divide(gcd);", "lcm", "mul.divide(gcd)", "mul.divide", "mul", "gcd", "return lcm;", "lcm", "String a", "a", "String b", "b", "static class FastReader {\n\t\tBufferedReader br;\n\t\tStringTokenizer st;\n \n\t\tpublic FastReader() {\n\t\t\tbr = new BufferedReader(new InputStreamReader(System.in));\n\t\t}\n \n\t\tString next() {\n\t\t\twhile (st == null || !st.hasMoreElements()) {\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n \n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n \n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n \n\t\tdouble nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tString nextLine() {\n\t\t\tString str = \"\";\n\t\t\ttry {\n\t\t\t\tstr = br.readLine();\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\treturn str;\n\t\t}\n\t}", "FastReader", "BufferedReader br;", "br", "StringTokenizer st;", "st", "public FastReader() {\n\t\t\tbr = new BufferedReader(new InputStreamReader(System.in));\n\t\t}", "FastReader", "{\n\t\t\tbr = new BufferedReader(new InputStreamReader(System.in));\n\t\t}", "br = new BufferedReader(new InputStreamReader(System.in))", "br", "new BufferedReader(new InputStreamReader(System.in))", "String next() {\n\t\t\twhile (st == null || !st.hasMoreElements()) {\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}", "next", "{\n\t\t\twhile (st == null || !st.hasMoreElements()) {\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}", "while (st == null || !st.hasMoreElements()) {\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t}", "st == null || !st.hasMoreElements()", "st == null", "st", "null", "!st.hasMoreElements()", "st.hasMoreElements()", "st.hasMoreElements", "st", "{\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t}", "try {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "IOException e", "{\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "e.printStackTrace()", "e.printStackTrace", "e", "{\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t}", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "int nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "nextInt", "{\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "long nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}", "nextLong", "{\n\t\t\treturn Long.parseLong(next());\n\t\t}", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}", "nextDouble", "{\n\t\t\treturn Double.parseDouble(next());\n\t\t}", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "String nextLine() {\n\t\t\tString str = \"\";\n\t\t\ttry {\n\t\t\t\tstr = br.readLine();\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\treturn str;\n\t\t}", "nextLine", "{\n\t\t\tString str = \"\";\n\t\t\ttry {\n\t\t\t\tstr = br.readLine();\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\treturn str;\n\t\t}", "String str = \"\";", "str", "\"\"", "try {\n\t\t\t\tstr = br.readLine();\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}", "catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}", "IOException e", "{\n\t\t\t\te.printStackTrace();\n\t\t\t}", "e.printStackTrace()", "e.printStackTrace", "e", "{\n\t\t\t\tstr = br.readLine();\n\t\t\t}", "str = br.readLine()", "str", "br.readLine()", "br.readLine", "br", "return str;", "str", "static class pair {\n\t\tint V, I;\n \n\t\tpair(int v, int i) {\n\t\t\tV = v;\n\t\t\tI = i;\n\t\t}\n\t}", "pair", "int V", "V", "I;", "I", "pair(int v, int i) {\n\t\t\tV = v;\n\t\t\tI = i;\n\t\t}", "pair", "{\n\t\t\tV = v;\n\t\t\tI = i;\n\t\t}", "V = v", "V", "v", "I = i", "I", "i", "int v", "v", "int i", "i", "public class Main {\n\tstatic final int INF = (int) (1e9 + 10);\n\tstatic final int MOD = (int) (1e9 + 7);\n \n\t// static final int N = (int) (4e5 + 5);\n\t// static ArrayList<Integer>[] graph;\n\t// static boolean visited[];\n\t// static long size[];\n \n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\tFastReader sc = new FastReader();\n\t\tPrintWriter pr = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n// \t\tint t = sc.nextInt();\n\t\t\n// \t\twhile (t-- > 0) {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0){\n\t\t\t pr.println(1);\n\t\t\t}else{\n\t\t\t pr.println(0);\n\t\t\t}\n\t\t\t\n\t\t\t\n// \t\t\tpr.println(ans);\n \n// \t\t}\n\t\tpr.flush();\n\t\tpr.close();\n\t}\n \n\t\n\tprivate static boolean possible(long[] arr, int[] f, long mid, long k) {\n\t\tlong c = 0;\n \n\t\tfor (int i = 0; i < arr.length; i++) {\n\t\t\tif ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}\n\t\t}\n\t\t// System.out.println(mid+\" \"+c);\n\t\tif (c <= k)\n\t\t\treturn true;\n\t\treturn false;\n\t}\n \n\tpublic static int lowerBound(ArrayList<Integer> array, int length, long value) {\n\t\tint low = 0;\n\t\tint high = length;\n\t\twhile (low < high) {\n\t\t\tfinal int mid = (low + high) / 2;\n\t\t\tif (value <= array.get(mid)) {\n\t\t\t\thigh = mid;\n\t\t\t} else {\n\t\t\t\tlow = mid + 1;\n\t\t\t}\n\t\t}\n\t\treturn low;\n\t}\n \n\tstatic class FastReader {\n\t\tBufferedReader br;\n\t\tStringTokenizer st;\n \n\t\tpublic FastReader() {\n\t\t\tbr = new BufferedReader(new InputStreamReader(System.in));\n\t\t}\n \n\t\tString next() {\n\t\t\twhile (st == null || !st.hasMoreElements()) {\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n \n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n \n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n \n\t\tdouble nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tString nextLine() {\n\t\t\tString str = \"\";\n\t\t\ttry {\n\t\t\t\tstr = br.readLine();\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\treturn str;\n\t\t}\n\t}\n \n\tstatic long gcd(long a, long b) {\n\t\tif (a == 0)\n\t\t\treturn b;\n\t\treturn gcd(b % a, a);\n\t}\n \n\tstatic long lcm(long a, long b) {\n\t\treturn (a * b) / gcd(a, b);\n\t}\n \n\tpublic static void sortbyColumn(int[][] att, int col) {\n\t\t// Using built-in sort function Arrays.sort\n\t\tArrays.sort(att, new Comparator<int[]>() {\n \n\t\t\t@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}\n\t\t}); // End of function call sort().\n\t}\n \n\tstatic class pair {\n\t\tint V, I;\n \n\t\tpair(int v, int i) {\n\t\t\tV = v;\n\t\t\tI = i;\n\t\t}\n\t}\n \n\tpublic static int[] swap(int data[], int left, int right) {\n\t\tint temp = data[left];\n\t\tdata[left] = data[right];\n\t\tdata[right] = temp;\n\t\treturn data;\n\t}\n \n\tpublic static int[] reverse(int data[], int left, int right) {\n\t\twhile (left < right) {\n\t\t\tint temp = data[left];\n\t\t\tdata[left++] = data[right];\n\t\t\tdata[right--] = temp;\n\t\t}\n\t\treturn data;\n\t}\n \n\tpublic static boolean findNextPermutation(int data[]) {\n\t\tif (data.length <= 1)\n\t\t\treturn false;\n \n\t\tint last = data.length - 2;\n\t\twhile (last >= 0) {\n\t\t\tif (data[last] < data[last + 1]) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tlast--;\n\t\t}\n\t\tif (last < 0)\n\t\t\treturn false;\n \n\t\tint nextGreater = data.length - 1;\n\t\tfor (int i = data.length - 1; i > last; i--) {\n\t\t\tif (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tdata = swap(data, nextGreater, last);\n\t\tdata = reverse(data, last + 1, data.length - 1);\n\t\treturn true;\n\t}\n \n\tstatic long nCr(long n, long r) {\n\t\tif (n == r)\n\t\t\treturn 1;\n\t\treturn fact(n) / (fact(r) * fact(n - r));\n\t}\n \n\tstatic long fact(long n) {\n\t\tlong res = 1;\n\t\tfor (long i = 2; i <= n; i++)\n\t\t\tres = res * i;\n\t\treturn res;\n\t}\n \n\t/*\n\t * static boolean prime[] = new boolean[1000007];\n\t * \n\t * public static void sieveOfEratosthenes(int n) {\n\t * \n\t * for (int i = 0; i < n; i++) prime[i] = true; * for (int p = 2; p * p <=\n\t * n; p++) { // If prime[p] is not changed, then it is a prime if (prime[p]\n\t * == true) { // Update all multiples of p for (int i = p * p; i <= n; i +=\n\t * p) prime[i] = false; } }\n\t * \n\t * // Print all prime numbers // for(int i = 2; i <= n; i++) // { //\n\t * if(prime[i] == true) // System.out.print(i + \" \"); // } }\n\t */\n \n\tstatic long power(long fac2, int y, int p) {\n\t\tlong res = 1;\n\t\tfac2 = fac2 % p;\n\t\twhile (y > 0) {\n\t\t\tif (y % 2 == 1)\n\t\t\t\tres = (res * fac2) % p;\n\t\t\tfac2 = (fac2 * fac2) % p;\n\t\t}\n\t\treturn res;\n\t}\n \n\tstatic long modInverse(long fac2, int p) {\n\t\treturn power(fac2, p - 2, p);\n\t}\n \n\tstatic boolean isPrime(int n) {\n\t\t// Corner cases\n\t\tif (n <= 1)\n\t\t\treturn false;\n\t\tif (n <= 3)\n\t\t\treturn true;\n \n\t\t// This is checked so that we can skip\n\t\t// middle five numbers in below loop\n\t\tif (n % 2 == 0 || n % 3 == 0)\n\t\t\treturn false;\n \n\t\tfor (int i = 5; i * i <= n; i = i + 6)\n\t\t\tif (n % i == 0 || n % (i + 2) == 0)\n\t\t\t\treturn false;\n \n\t\treturn true;\n\t}\n \n\tpublic static BigInteger lcmm(String a, String b) {\n\t\tBigInteger s = new BigInteger(a);\n\t\tBigInteger s1 = new BigInteger(b);\n\t\tBigInteger mul = s.multiply(s1);\n\t\tBigInteger gcd = s.gcd(s1);\n\t\tBigInteger lcm = mul.divide(gcd);\n\t\treturn lcm;\n\t}\n \n}", "public class Main {\n\tstatic final int INF = (int) (1e9 + 10);\n\tstatic final int MOD = (int) (1e9 + 7);\n \n\t// static final int N = (int) (4e5 + 5);\n\t// static ArrayList<Integer>[] graph;\n\t// static boolean visited[];\n\t// static long size[];\n \n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\tFastReader sc = new FastReader();\n\t\tPrintWriter pr = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n// \t\tint t = sc.nextInt();\n\t\t\n// \t\twhile (t-- > 0) {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0){\n\t\t\t pr.println(1);\n\t\t\t}else{\n\t\t\t pr.println(0);\n\t\t\t}\n\t\t\t\n\t\t\t\n// \t\t\tpr.println(ans);\n \n// \t\t}\n\t\tpr.flush();\n\t\tpr.close();\n\t}\n \n\t\n\tprivate static boolean possible(long[] arr, int[] f, long mid, long k) {\n\t\tlong c = 0;\n \n\t\tfor (int i = 0; i < arr.length; i++) {\n\t\t\tif ((arr[i] * f[f.length - i - 1]) > mid) {\n\t\t\t\tc += (arr[i] - (mid / f[f.length - i - 1]));\n\t\t\t}\n\t\t}\n\t\t// System.out.println(mid+\" \"+c);\n\t\tif (c <= k)\n\t\t\treturn true;\n\t\treturn false;\n\t}\n \n\tpublic static int lowerBound(ArrayList<Integer> array, int length, long value) {\n\t\tint low = 0;\n\t\tint high = length;\n\t\twhile (low < high) {\n\t\t\tfinal int mid = (low + high) / 2;\n\t\t\tif (value <= array.get(mid)) {\n\t\t\t\thigh = mid;\n\t\t\t} else {\n\t\t\t\tlow = mid + 1;\n\t\t\t}\n\t\t}\n\t\treturn low;\n\t}\n \n\tstatic class FastReader {\n\t\tBufferedReader br;\n\t\tStringTokenizer st;\n \n\t\tpublic FastReader() {\n\t\t\tbr = new BufferedReader(new InputStreamReader(System.in));\n\t\t}\n \n\t\tString next() {\n\t\t\twhile (st == null || !st.hasMoreElements()) {\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n \n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n \n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n \n\t\tdouble nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tString nextLine() {\n\t\t\tString str = \"\";\n\t\t\ttry {\n\t\t\t\tstr = br.readLine();\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\treturn str;\n\t\t}\n\t}\n \n\tstatic long gcd(long a, long b) {\n\t\tif (a == 0)\n\t\t\treturn b;\n\t\treturn gcd(b % a, a);\n\t}\n \n\tstatic long lcm(long a, long b) {\n\t\treturn (a * b) / gcd(a, b);\n\t}\n \n\tpublic static void sortbyColumn(int[][] att, int col) {\n\t\t// Using built-in sort function Arrays.sort\n\t\tArrays.sort(att, new Comparator<int[]>() {\n \n\t\t\t@Override\n\t\t\t// Compare values according to columns\n\t\t\tpublic int compare(final int[] entry1, final int[] entry2) {\n \n\t\t\t\t// To sort in descending order revert\n\t\t\t\t// the '>' Operator\n\t\t\t\t// if (entry1[col] > entry2[col])\n\t\t\t\t// return 1;\n\t\t\t\t// else //(entry1[col] >= entry2[col])\n\t\t\t\t// return -1;\n\t\t\t\treturn new Integer(entry1[col]).compareTo(entry2[col]);\n\t\t\t\t// return entry1[col].\n\t\t\t}\n\t\t}); // End of function call sort().\n\t}\n \n\tstatic class pair {\n\t\tint V, I;\n \n\t\tpair(int v, int i) {\n\t\t\tV = v;\n\t\t\tI = i;\n\t\t}\n\t}\n \n\tpublic static int[] swap(int data[], int left, int right) {\n\t\tint temp = data[left];\n\t\tdata[left] = data[right];\n\t\tdata[right] = temp;\n\t\treturn data;\n\t}\n \n\tpublic static int[] reverse(int data[], int left, int right) {\n\t\twhile (left < right) {\n\t\t\tint temp = data[left];\n\t\t\tdata[left++] = data[right];\n\t\t\tdata[right--] = temp;\n\t\t}\n\t\treturn data;\n\t}\n \n\tpublic static boolean findNextPermutation(int data[]) {\n\t\tif (data.length <= 1)\n\t\t\treturn false;\n \n\t\tint last = data.length - 2;\n\t\twhile (last >= 0) {\n\t\t\tif (data[last] < data[last + 1]) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tlast--;\n\t\t}\n\t\tif (last < 0)\n\t\t\treturn false;\n \n\t\tint nextGreater = data.length - 1;\n\t\tfor (int i = data.length - 1; i > last; i--) {\n\t\t\tif (data[i] > data[last]) {\n\t\t\t\tnextGreater = i;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tdata = swap(data, nextGreater, last);\n\t\tdata = reverse(data, last + 1, data.length - 1);\n\t\treturn true;\n\t}\n \n\tstatic long nCr(long n, long r) {\n\t\tif (n == r)\n\t\t\treturn 1;\n\t\treturn fact(n) / (fact(r) * fact(n - r));\n\t}\n \n\tstatic long fact(long n) {\n\t\tlong res = 1;\n\t\tfor (long i = 2; i <= n; i++)\n\t\t\tres = res * i;\n\t\treturn res;\n\t}\n \n\t/*\n\t * static boolean prime[] = new boolean[1000007];\n\t * \n\t * public static void sieveOfEratosthenes(int n) {\n\t * \n\t * for (int i = 0; i < n; i++) prime[i] = true; * for (int p = 2; p * p <=\n\t * n; p++) { // If prime[p] is not changed, then it is a prime if (prime[p]\n\t * == true) { // Update all multiples of p for (int i = p * p; i <= n; i +=\n\t * p) prime[i] = false; } }\n\t * \n\t * // Print all prime numbers // for(int i = 2; i <= n; i++) // { //\n\t * if(prime[i] == true) // System.out.print(i + \" \"); // } }\n\t */\n \n\tstatic long power(long fac2, int y, int p) {\n\t\tlong res = 1;\n\t\tfac2 = fac2 % p;\n\t\twhile (y > 0) {\n\t\t\tif (y % 2 == 1)\n\t\t\t\tres = (res * fac2) % p;\n\t\t\tfac2 = (fac2 * fac2) % p;\n\t\t}\n\t\treturn res;\n\t}\n \n\tstatic long modInverse(long fac2, int p) {\n\t\treturn power(fac2, p - 2, p);\n\t}\n \n\tstatic boolean isPrime(int n) {\n\t\t// Corner cases\n\t\tif (n <= 1)\n\t\t\treturn false;\n\t\tif (n <= 3)\n\t\t\treturn true;\n \n\t\t// This is checked so that we can skip\n\t\t// middle five numbers in below loop\n\t\tif (n % 2 == 0 || n % 3 == 0)\n\t\t\treturn false;\n \n\t\tfor (int i = 5; i * i <= n; i = i + 6)\n\t\t\tif (n % i == 0 || n % (i + 2) == 0)\n\t\t\t\treturn false;\n \n\t\treturn true;\n\t}\n \n\tpublic static BigInteger lcmm(String a, String b) {\n\t\tBigInteger s = new BigInteger(a);\n\t\tBigInteger s1 = new BigInteger(b);\n\t\tBigInteger mul = s.multiply(s1);\n\t\tBigInteger gcd = s.gcd(s1);\n\t\tBigInteger lcm = mul.divide(gcd);\n\t\treturn lcm;\n\t}\n \n}", "Main" ]
import java.io.*; import java.math.BigDecimal; import java.math.BigInteger; import java.util.*; public class Main { static final int INF = (int) (1e9 + 10); static final int MOD = (int) (1e9 + 7); // static final int N = (int) (4e5 + 5); // static ArrayList<Integer>[] graph; // static boolean visited[]; // static long size[]; public static void main(String[] args) throws NumberFormatException, IOException { FastReader sc = new FastReader(); PrintWriter pr = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out))); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); // int t = sc.nextInt(); // while (t-- > 0) { int n = sc.nextInt(); if(n == 0){ pr.println(1); }else{ pr.println(0); } // pr.println(ans); // } pr.flush(); pr.close(); } private static boolean possible(long[] arr, int[] f, long mid, long k) { long c = 0; for (int i = 0; i < arr.length; i++) { if ((arr[i] * f[f.length - i - 1]) > mid) { c += (arr[i] - (mid / f[f.length - i - 1])); } } // System.out.println(mid+" "+c); if (c <= k) return true; return false; } public static int lowerBound(ArrayList<Integer> array, int length, long value) { int low = 0; int high = length; while (low < high) { final int mid = (low + high) / 2; if (value <= array.get(mid)) { high = mid; } else { low = mid + 1; } } return low; } static class FastReader { BufferedReader br; StringTokenizer st; public FastReader() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } static long gcd(long a, long b) { if (a == 0) return b; return gcd(b % a, a); } static long lcm(long a, long b) { return (a * b) / gcd(a, b); } public static void sortbyColumn(int[][] att, int col) { // Using built-in sort function Arrays.sort Arrays.sort(att, new Comparator<int[]>() { @Override // Compare values according to columns public int compare(final int[] entry1, final int[] entry2) { // To sort in descending order revert // the '>' Operator // if (entry1[col] > entry2[col]) // return 1; // else //(entry1[col] >= entry2[col]) // return -1; return new Integer(entry1[col]).compareTo(entry2[col]); // return entry1[col]. } }); // End of function call sort(). } static class pair { int V, I; pair(int v, int i) { V = v; I = i; } } public static int[] swap(int data[], int left, int right) { int temp = data[left]; data[left] = data[right]; data[right] = temp; return data; } public static int[] reverse(int data[], int left, int right) { while (left < right) { int temp = data[left]; data[left++] = data[right]; data[right--] = temp; } return data; } public static boolean findNextPermutation(int data[]) { if (data.length <= 1) return false; int last = data.length - 2; while (last >= 0) { if (data[last] < data[last + 1]) { break; } last--; } if (last < 0) return false; int nextGreater = data.length - 1; for (int i = data.length - 1; i > last; i--) { if (data[i] > data[last]) { nextGreater = i; break; } } data = swap(data, nextGreater, last); data = reverse(data, last + 1, data.length - 1); return true; } static long nCr(long n, long r) { if (n == r) return 1; return fact(n) / (fact(r) * fact(n - r)); } static long fact(long n) { long res = 1; for (long i = 2; i <= n; i++) res = res * i; return res; } /* * static boolean prime[] = new boolean[1000007]; * * public static void sieveOfEratosthenes(int n) { * * for (int i = 0; i < n; i++) prime[i] = true; * for (int p = 2; p * p <= * n; p++) { // If prime[p] is not changed, then it is a prime if (prime[p] * == true) { // Update all multiples of p for (int i = p * p; i <= n; i += * p) prime[i] = false; } } * * // Print all prime numbers // for(int i = 2; i <= n; i++) // { // * if(prime[i] == true) // System.out.print(i + " "); // } } */ static long power(long fac2, int y, int p) { long res = 1; fac2 = fac2 % p; while (y > 0) { if (y % 2 == 1) res = (res * fac2) % p; fac2 = (fac2 * fac2) % p; } return res; } static long modInverse(long fac2, int p) { return power(fac2, p - 2, p); } static boolean isPrime(int n) { // Corner cases if (n <= 1) return false; if (n <= 3) return true; // This is checked so that we can skip // middle five numbers in below loop if (n % 2 == 0 || n % 3 == 0) return false; for (int i = 5; i * i <= n; i = i + 6) if (n % i == 0 || n % (i + 2) == 0) return false; return true; } public static BigInteger lcmm(String a, String b) { BigInteger s = new BigInteger(a); BigInteger s1 = new BigInteger(b); BigInteger mul = s.multiply(s1); BigInteger gcd = s.gcd(s1); BigInteger lcm = mul.divide(gcd); return lcm; } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 38, 5 ], [ 38, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 17, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 6, 35 ], [ 35, 36 ], [ 0, 37 ], [ 37, 38 ], [ 37, 39 ] ]
[ "import java.util.*;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n if(N==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n }\n}", "import java.util.*;", "util.*", "java", "public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n if(N==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n }\n}", "Main", "public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n if(N==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n if(N==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int N = sc.nextInt();", "N", "sc.nextInt()", "sc.nextInt", "sc", "if(N==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }", "N==0", "N", "0", "{\n System.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "{\n System.out.println(0);\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n if(N==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n }\n}", "public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n if(N==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n }\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); if(N==0){ System.out.println(1); }else{ System.out.println(0); } } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 17, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 44, 5 ], [ 44, 6 ], [ 6, 7 ], [ 6, 8 ], [ 44, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 17, 20 ], [ 20, 21 ], [ 21, 22 ], [ 11, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 23, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 28, 33 ], [ 23, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 35, 40 ], [ 9, 41 ], [ 41, 42 ], [ 0, 43 ], [ 43, 44 ], [ 43, 45 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n public static final int MOD = 1000000007;\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n if (n == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n public static final int MOD = 1000000007;\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n if (n == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }\n}", "Main", "public static final int MOD = 1000000007;", "MOD", "1000000007", "public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n if (n == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n if (n == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int n = Integer.parseInt(sc.next());", "n", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc", "if (n == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }", "n == 0", "n", "0", "{\n System.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "{\n System.out.println(0);\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n\n public static final int MOD = 1000000007;\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n if (n == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }\n}", "public class Main {\n\n public static final int MOD = 1000000007;\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n if (n == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static final int MOD = 1000000007; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.next()); if (n == 0) { System.out.println(1); } else { System.out.println(0); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 8, 2, 13, 17, 17, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 45, 5 ], [ 45, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 16, 17 ], [ 17, 18 ], [ 14, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 25, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 30, 34 ], [ 30, 35 ], [ 8, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 36, 41 ], [ 6, 42 ], [ 42, 43 ], [ 0, 44 ], [ 44, 45 ], [ 44, 46 ] ]
[ "\nimport java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tString[] t = sc.nextLine().split(\" \");\n\t\tlong n = Long.parseLong(t[0]);\n\t\tlong min = n == 0 ? 1 : 0;\n\t\tSystem.out.println(min);\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tString[] t = sc.nextLine().split(\" \");\n\t\tlong n = Long.parseLong(t[0]);\n\t\tlong min = n == 0 ? 1 : 0;\n\t\tSystem.out.println(min);\n\t}\n}", "Main", "public static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tString[] t = sc.nextLine().split(\" \");\n\t\tlong n = Long.parseLong(t[0]);\n\t\tlong min = n == 0 ? 1 : 0;\n\t\tSystem.out.println(min);\n\t}", "main", "{\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tString[] t = sc.nextLine().split(\" \");\n\t\tlong n = Long.parseLong(t[0]);\n\t\tlong min = n == 0 ? 1 : 0;\n\t\tSystem.out.println(min);\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String[] t = sc.nextLine().split(\" \");", "t", "sc.nextLine().split(\" \")", "sc.nextLine().split", "sc.nextLine()", "sc.nextLine", "sc", "\" \"", "long n = Long.parseLong(t[0]);", "n", "Long.parseLong(t[0])", "Long.parseLong", "Long", "t[0]", "t", "0", "long min = n == 0 ? 1 : 0;", "min", "n == 0 ? 1 : 0", "n == 0", "n", "0", "1", "0", "System.out.println(min)", "System.out.println", "System.out", "System", "System.out", "min", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tString[] t = sc.nextLine().split(\" \");\n\t\tlong n = Long.parseLong(t[0]);\n\t\tlong min = n == 0 ? 1 : 0;\n\t\tSystem.out.println(min);\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tString[] t = sc.nextLine().split(\" \");\n\t\tlong n = Long.parseLong(t[0]);\n\t\tlong min = n == 0 ? 1 : 0;\n\t\tSystem.out.println(min);\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] t = sc.nextLine().split(" "); long n = Long.parseLong(t[0]); long min = n == 0 ? 1 : 0; System.out.println(min); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 17, 41, 13, 4, 18, 13, 14, 2, 13, 17, 0, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 8, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 27, 32 ], [ 6, 33 ], [ 33, 34 ] ]
[ "import java.util.Scanner;\nclass Main{\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int x = 0;\n int N = sc.nextInt();\n if(N==0) x = 1;\n System.out.print(x);\n }\n \n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int x = 0;\n int N = sc.nextInt();\n if(N==0) x = 1;\n System.out.print(x);\n }\n \n}", "Main", "public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int x = 0;\n int N = sc.nextInt();\n if(N==0) x = 1;\n System.out.print(x);\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int x = 0;\n int N = sc.nextInt();\n if(N==0) x = 1;\n System.out.print(x);\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x = 0;", "x", "0", "int N = sc.nextInt();", "N", "sc.nextInt()", "sc.nextInt", "sc", "if(N==0) x = 1;", "N==0", "N", "0", "x = 1", "x", "1", "System.out.print(x)", "System.out.print", "System.out", "System", "System.out", "x", "String[] args", "args" ]
import java.util.Scanner; class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int x = 0; int N = sc.nextInt(); if(N==0) x = 1; System.out.print(x); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 40, 17, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 2, 17, 13, 4, 18, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 17, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 4, 18, 13, 29, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 136, 8 ], [ 136, 9 ], [ 9, 10 ], [ 9, 11 ], [ 136, 12 ], [ 12, 13 ], [ 12, 14 ], [ 136, 15 ], [ 15, 16 ], [ 15, 17 ], [ 136, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 136, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 25, 27 ], [ 24, 28 ], [ 28, 29 ], [ 28, 30 ], [ 24, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 24, 36 ], [ 36, 37 ], [ 37, 38 ], [ 36, 39 ], [ 39, 40 ], [ 39, 41 ], [ 24, 42 ], [ 42, 43 ], [ 43, 44 ], [ 22, 45 ], [ 45, 46 ], [ 136, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 47, 51 ], [ 51, 52 ], [ 47, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 47, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 62, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 72, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 61, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 47, 87 ], [ 87, 88 ], [ 87, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 91, 94 ], [ 94, 95 ], [ 47, 96 ], [ 96, 97 ], [ 96, 98 ], [ 98, 99 ], [ 99, 100 ], [ 100, 101 ], [ 101, 102 ], [ 100, 103 ], [ 103, 104 ], [ 47, 105 ], [ 105, 106 ], [ 105, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 110, 111 ], [ 109, 112 ], [ 112, 113 ], [ 47, 114 ], [ 114, 115 ], [ 114, 116 ], [ 116, 117 ], [ 117, 118 ], [ 117, 119 ], [ 116, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 123, 124 ], [ 124, 125 ], [ 125, 126 ], [ 120, 127 ], [ 127, 128 ], [ 128, 129 ], [ 128, 130 ], [ 130, 131 ], [ 131, 132 ], [ 116, 133 ], [ 133, 134 ], [ 0, 135 ], [ 135, 136 ], [ 135, 137 ] ]
[ "import java.io.*;\nimport java.util.*;\n \npublic class Main {\n //static final long MOD = 1000000007L;\n static final long DIV2 = 500000004L;\n static final long MOD = 998244353L;\n static final int INF = 50000000;\n static final int NINF = -500000000;\n \n public static void main(String[] args) {\n FastScanner sc = new FastScanner();\n PrintWriter pw = new PrintWriter(System.out);\n \n int N = sc.ni();\n pw.println(1-N);\n \n pw.close();\n }\n \n static class FastScanner {\n BufferedReader br;\n StringTokenizer st;\n \n public FastScanner() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n \n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n \n int ni() {\n return Integer.parseInt(next());\n }\n \n long nl() {\n return Long.parseLong(next());\n }\n \n double nd() {\n return Double.parseDouble(next());\n }\n \n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "public class Main {\n //static final long MOD = 1000000007L;\n static final long DIV2 = 500000004L;\n static final long MOD = 998244353L;\n static final int INF = 50000000;\n static final int NINF = -500000000;\n \n public static void main(String[] args) {\n FastScanner sc = new FastScanner();\n PrintWriter pw = new PrintWriter(System.out);\n \n int N = sc.ni();\n pw.println(1-N);\n \n pw.close();\n }\n \n static class FastScanner {\n BufferedReader br;\n StringTokenizer st;\n \n public FastScanner() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n \n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n \n int ni() {\n return Integer.parseInt(next());\n }\n \n long nl() {\n return Long.parseLong(next());\n }\n \n double nd() {\n return Double.parseDouble(next());\n }\n \n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n}", "Main", "//static final long MOD = 1000000007L;\n static final long DIV2 = 500000004L;", "DIV2", "500000004L", "static final long MOD = 998244353L;", "MOD", "998244353L", "static final int INF = 50000000;", "INF", "50000000", "static final int NINF = -500000000;", "NINF", "-500000000", "500000000", "public static void main(String[] args) {\n FastScanner sc = new FastScanner();\n PrintWriter pw = new PrintWriter(System.out);\n \n int N = sc.ni();\n pw.println(1-N);\n \n pw.close();\n }", "main", "{\n FastScanner sc = new FastScanner();\n PrintWriter pw = new PrintWriter(System.out);\n \n int N = sc.ni();\n pw.println(1-N);\n \n pw.close();\n }", "FastScanner sc = new FastScanner();", "sc", "new FastScanner()", "PrintWriter pw = new PrintWriter(System.out);", "pw", "new PrintWriter(System.out)", "int N = sc.ni();", "N", "sc.ni()", "sc.ni", "sc", "pw.println(1-N)", "pw.println", "pw", "1-N", "1", "N", "pw.close()", "pw.close", "pw", "String[] args", "args", "static class FastScanner {\n BufferedReader br;\n StringTokenizer st;\n \n public FastScanner() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n \n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n \n int ni() {\n return Integer.parseInt(next());\n }\n \n long nl() {\n return Long.parseLong(next());\n }\n \n double nd() {\n return Double.parseDouble(next());\n }\n \n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }", "FastScanner", "BufferedReader br;", "br", "StringTokenizer st;", "st", "public FastScanner() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }", "FastScanner", "{\n br = new BufferedReader(new InputStreamReader(System.in));\n }", "br = new BufferedReader(new InputStreamReader(System.in))", "br", "new BufferedReader(new InputStreamReader(System.in))", "String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "next", "{\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }", "st == null || !st.hasMoreElements()", "st == null", "st", "null", "!st.hasMoreElements()", "st.hasMoreElements()", "st.hasMoreElements", "st", "{\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }", "try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }", "catch (IOException e) {\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n st = new StringTokenizer(br.readLine());\n }", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "int ni() {\n return Integer.parseInt(next());\n }", "ni", "{\n return Integer.parseInt(next());\n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "long nl() {\n return Long.parseLong(next());\n }", "nl", "{\n return Long.parseLong(next());\n }", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "double nd() {\n return Double.parseDouble(next());\n }", "nd", "{\n return Double.parseDouble(next());\n }", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }", "nextLine", "{\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }", "String str = \"\";", "str", "\"\"", "try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }", "catch (IOException e) {\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n str = br.readLine();\n }", "str = br.readLine()", "str", "br.readLine()", "br.readLine", "br", "return str;", "str", "public class Main {\n //static final long MOD = 1000000007L;\n static final long DIV2 = 500000004L;\n static final long MOD = 998244353L;\n static final int INF = 50000000;\n static final int NINF = -500000000;\n \n public static void main(String[] args) {\n FastScanner sc = new FastScanner();\n PrintWriter pw = new PrintWriter(System.out);\n \n int N = sc.ni();\n pw.println(1-N);\n \n pw.close();\n }\n \n static class FastScanner {\n BufferedReader br;\n StringTokenizer st;\n \n public FastScanner() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n \n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n \n int ni() {\n return Integer.parseInt(next());\n }\n \n long nl() {\n return Long.parseLong(next());\n }\n \n double nd() {\n return Double.parseDouble(next());\n }\n \n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n}", "public class Main {\n //static final long MOD = 1000000007L;\n static final long DIV2 = 500000004L;\n static final long MOD = 998244353L;\n static final int INF = 50000000;\n static final int NINF = -500000000;\n \n public static void main(String[] args) {\n FastScanner sc = new FastScanner();\n PrintWriter pw = new PrintWriter(System.out);\n \n int N = sc.ni();\n pw.println(1-N);\n \n pw.close();\n }\n \n static class FastScanner {\n BufferedReader br;\n StringTokenizer st;\n \n public FastScanner() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n \n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n \n int ni() {\n return Integer.parseInt(next());\n }\n \n long nl() {\n return Long.parseLong(next());\n }\n \n double nd() {\n return Double.parseDouble(next());\n }\n \n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n}", "Main" ]
import java.io.*; import java.util.*; public class Main { //static final long MOD = 1000000007L; static final long DIV2 = 500000004L; static final long MOD = 998244353L; static final int INF = 50000000; static final int NINF = -500000000; public static void main(String[] args) { FastScanner sc = new FastScanner(); PrintWriter pw = new PrintWriter(System.out); int N = sc.ni(); pw.println(1-N); pw.close(); } static class FastScanner { BufferedReader br; StringTokenizer st; public FastScanner() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int ni() { return Integer.parseInt(next()); } long nl() { return Long.parseLong(next()); } double nd() { return Double.parseDouble(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 0, 13, 20, 41, 13, 17, 42, 4, 18, 13, 30, 0, 13, 2, 4, 18, 13, 17, 29, 13, 12, 13, 30, 14, 2, 13, 17, 29, 13, 29, 4, 13, 13, 2, 13, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 30, 29, 17, 14, 2, 13, 17, 30, 29, 17, 14, 2, 2, 2, 13, 17, 17, 2, 2, 13, 17, 17, 30, 29, 17, 11, 1, 41, 13, 17, 2, 2, 13, 13, 13, 1, 0, 13, 2, 13, 17, 30, 30, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 2, 13, 17, 17, 30, 29, 17, 29, 17, 23, 13, 12, 13, 30, 11, 1, 41, 13, 17, 2, 13, 18, 13, 13, 1, 40, 13, 30, 30, 41, 13, 2, 13, 4, 18, 13, 41, 13, 18, 13, 13, 0, 18, 13, 13, 18, 13, 13, 0, 18, 13, 13, 13, 23, 13, 12, 13, 30, 41, 13, 17, 14, 2, 13, 17, 30, 29, 17, 41, 13, 4, 13, 13, 2, 13, 17, 14, 2, 2, 13, 17, 17, 30, 29, 2, 2, 2, 13, 13, 13, 13, 29, 2, 2, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 17, 14, 2, 13, 2, 13, 13, 30, 0, 13, 2, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 13, 2, 13, 13, 0, 13, 2, 13, 17, 29, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 13, 30, 41, 13, 2, 13, 2, 2, 13, 13, 17, 14, 2, 2, 2, 13, 17, 2, 13, 18, 13, 2, 13, 17, 2, 18, 13, 13, 13, 29, 13, 14, 2, 13, 18, 13, 13, 29, 4, 13, 13, 2, 13, 17, 13, 13, 13, 29, 4, 13, 13, 13, 2, 13, 17, 13, 13, 29, 40, 17, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 13, 30, 41, 13, 2, 13, 2, 2, 13, 13, 17, 14, 2, 2, 2, 13, 2, 13, 17, 2, 13, 18, 13, 2, 13, 17, 2, 18, 13, 13, 13, 29, 13, 14, 2, 13, 18, 13, 13, 29, 4, 13, 13, 13, 2, 13, 17, 13, 13, 29, 4, 13, 13, 2, 13, 17, 13, 13, 13, 29, 40, 17, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 42, 2, 13, 13, 30, 41, 13, 2, 13, 2, 2, 13, 13, 17, 14, 2, 18, 13, 13, 13, 30, 29, 13, 14, 2, 18, 13, 13, 13, 30, 0, 13, 2, 13, 17, 30, 0, 13, 2, 13, 17, 29, 40, 17, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 0, 13, 20, 0, 13, 17, 0, 13, 20, 4, 13, 4, 18, 13, 4, 18, 13, 23, 13, 12, 13, 30, 41, 13, 4, 13, 14, 2, 13, 17, 30, 4, 18, 13, 17, 30, 4, 18, 13, 17, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 12, 13, 30, 29, 2, 13, 18, 13, 13, 23, 13, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 604, 11 ], [ 604, 12 ], [ 12, 13 ], [ 604, 14 ], [ 14, 15 ], [ 604, 16 ], [ 16, 17 ], [ 604, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 604, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 34 ], [ 34, 35 ], [ 604, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 604, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 48, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 47, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 604, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 71, 72 ], [ 71, 73 ], [ 67, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 74, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 81, 85 ], [ 67, 86 ], [ 86, 87 ], [ 604, 88 ], [ 88, 89 ], [ 88, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 91, 95 ], [ 95, 96 ], [ 91, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 98, 101 ], [ 101, 102 ], [ 101, 103 ], [ 88, 104 ], [ 104, 105 ], [ 88, 106 ], [ 106, 107 ], [ 604, 108 ], [ 108, 109 ], [ 108, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 111, 115 ], [ 115, 116 ], [ 116, 117 ], [ 110, 118 ], [ 118, 119 ], [ 119, 120 ], [ 119, 121 ], [ 118, 122 ], [ 122, 123 ], [ 123, 124 ], [ 110, 125 ], [ 125, 126 ], [ 126, 127 ], [ 127, 128 ], [ 128, 129 ], [ 128, 130 ], [ 127, 131 ], [ 126, 132 ], [ 132, 133 ], [ 133, 134 ], [ 133, 135 ], [ 132, 136 ], [ 125, 137 ], [ 137, 138 ], [ 138, 139 ], [ 110, 140 ], [ 140, 141 ], [ 141, 142 ], [ 142, 143 ], [ 142, 144 ], [ 140, 145 ], [ 145, 146 ], [ 146, 147 ], [ 146, 148 ], [ 145, 149 ], [ 140, 150 ], [ 150, 151 ], [ 151, 152 ], [ 151, 153 ], [ 153, 154 ], [ 153, 155 ], [ 140, 156 ], [ 157, 157 ], [ 157, 158 ], [ 158, 159 ], [ 159, 160 ], [ 160, 161 ], [ 161, 162 ], [ 161, 163 ], [ 160, 164 ], [ 159, 165 ], [ 165, 166 ], [ 166, 167 ], [ 166, 168 ], [ 168, 169 ], [ 168, 170 ], [ 165, 171 ], [ 158, 172 ], [ 172, 173 ], [ 173, 174 ], [ 110, 175 ], [ 175, 176 ], [ 108, 177 ], [ 177, 178 ], [ 604, 179 ], [ 179, 180 ], [ 179, 181 ], [ 181, 182 ], [ 182, 183 ], [ 183, 184 ], [ 184, 185 ], [ 184, 186 ], [ 182, 187 ], [ 187, 188 ], [ 187, 189 ], [ 189, 190 ], [ 189, 191 ], [ 182, 192 ], [ 192, 193 ], [ 193, 194 ], [ 182, 195 ], [ 196, 196 ], [ 196, 197 ], [ 197, 198 ], [ 197, 199 ], [ 199, 200 ], [ 199, 201 ], [ 201, 202 ], [ 202, 203 ], [ 196, 204 ], [ 204, 205 ], [ 204, 206 ], [ 206, 207 ], [ 206, 208 ], [ 196, 209 ], [ 209, 210 ], [ 210, 211 ], [ 210, 212 ], [ 209, 213 ], [ 213, 214 ], [ 213, 215 ], [ 196, 216 ], [ 216, 217 ], [ 217, 218 ], [ 217, 219 ], [ 216, 220 ], [ 179, 221 ], [ 221, 222 ], [ 604, 223 ], [ 223, 224 ], [ 223, 225 ], [ 225, 226 ], [ 226, 227 ], [ 226, 228 ], [ 225, 229 ], [ 229, 230 ], [ 230, 231 ], [ 230, 232 ], [ 229, 233 ], [ 233, 234 ], [ 234, 235 ], [ 225, 236 ], [ 236, 237 ], [ 236, 238 ], [ 238, 239 ], [ 238, 240 ], [ 238, 241 ], [ 241, 242 ], [ 241, 243 ], [ 225, 244 ], [ 244, 245 ], [ 245, 246 ], [ 246, 247 ], [ 246, 248 ], [ 245, 249 ], [ 244, 250 ], [ 250, 251 ], [ 251, 252 ], [ 252, 253 ], [ 253, 254 ], [ 254, 255 ], [ 254, 256 ], [ 253, 257 ], [ 252, 258 ], [ 225, 259 ], [ 259, 260 ], [ 260, 261 ], [ 261, 262 ], [ 261, 263 ], [ 260, 264 ], [ 223, 265 ], [ 265, 266 ], [ 223, 267 ], [ 267, 268 ], [ 604, 269 ], [ 269, 270 ], [ 269, 271 ], [ 271, 272 ], [ 272, 273 ], [ 272, 274 ], [ 271, 275 ], [ 275, 276 ], [ 276, 277 ], [ 276, 278 ], [ 278, 279 ], [ 278, 280 ], [ 275, 281 ], [ 281, 282 ], [ 282, 283 ], [ 282, 284 ], [ 284, 285 ], [ 284, 286 ], [ 271, 287 ], [ 287, 288 ], [ 288, 289 ], [ 289, 290 ], [ 289, 291 ], [ 287, 292 ], [ 292, 293 ], [ 292, 294 ], [ 287, 295 ], [ 295, 296 ], [ 296, 297 ], [ 287, 298 ], [ 299, 299 ], [ 299, 300 ], [ 300, 301 ], [ 300, 302 ], [ 302, 303 ], [ 302, 304 ], [ 299, 305 ], [ 305, 306 ], [ 305, 307 ], [ 307, 308 ], [ 307, 309 ], [ 271, 310 ], [ 310, 311 ], [ 269, 312 ], [ 312, 313 ], [ 269, 314 ], [ 314, 315 ], [ 604, 316 ], [ 316, 317 ], [ 316, 318 ], [ 318, 319 ], [ 319, 320 ], [ 320, 321 ], [ 320, 322 ], [ 319, 323 ], [ 323, 324 ], [ 324, 325 ], [ 324, 326 ], [ 326, 327 ], [ 326, 328 ], [ 328, 329 ], [ 329, 330 ], [ 329, 331 ], [ 328, 332 ], [ 323, 333 ], [ 333, 334 ], [ 334, 335 ], [ 335, 336 ], [ 336, 337 ], [ 336, 338 ], [ 335, 339 ], [ 339, 340 ], [ 339, 341 ], [ 341, 342 ], [ 341, 343 ], [ 343, 344 ], [ 343, 345 ], [ 334, 346 ], [ 346, 347 ], [ 347, 348 ], [ 347, 349 ], [ 346, 350 ], [ 333, 351 ], [ 351, 352 ], [ 333, 353 ], [ 353, 354 ], [ 354, 355 ], [ 354, 356 ], [ 356, 357 ], [ 356, 358 ], [ 353, 359 ], [ 359, 360 ], [ 360, 361 ], [ 360, 362 ], [ 360, 363 ], [ 363, 364 ], [ 363, 365 ], [ 360, 366 ], [ 360, 367 ], [ 360, 368 ], [ 353, 369 ], [ 369, 370 ], [ 370, 371 ], [ 370, 372 ], [ 370, 373 ], [ 370, 374 ], [ 374, 375 ], [ 374, 376 ], [ 370, 377 ], [ 370, 378 ], [ 318, 379 ], [ 379, 380 ], [ 380, 381 ], [ 316, 382 ], [ 382, 383 ], [ 316, 384 ], [ 384, 385 ], [ 316, 386 ], [ 386, 387 ], [ 316, 388 ], [ 388, 389 ], [ 316, 390 ], [ 390, 391 ], [ 604, 392 ], [ 392, 393 ], [ 392, 394 ], [ 394, 395 ], [ 395, 396 ], [ 396, 397 ], [ 396, 398 ], [ 395, 399 ], [ 399, 400 ], [ 400, 401 ], [ 400, 402 ], [ 402, 403 ], [ 402, 404 ], [ 404, 405 ], [ 405, 406 ], [ 405, 407 ], [ 404, 408 ], [ 399, 409 ], [ 409, 410 ], [ 410, 411 ], [ 411, 412 ], [ 412, 413 ], [ 412, 414 ], [ 414, 415 ], [ 414, 416 ], [ 411, 417 ], [ 417, 418 ], [ 417, 419 ], [ 419, 420 ], [ 419, 421 ], [ 421, 422 ], [ 421, 423 ], [ 410, 424 ], [ 424, 425 ], [ 425, 426 ], [ 425, 427 ], [ 424, 428 ], [ 409, 429 ], [ 429, 430 ], [ 409, 431 ], [ 431, 432 ], [ 432, 433 ], [ 432, 434 ], [ 434, 435 ], [ 434, 436 ], [ 431, 437 ], [ 437, 438 ], [ 438, 439 ], [ 438, 440 ], [ 438, 441 ], [ 438, 442 ], [ 442, 443 ], [ 442, 444 ], [ 438, 445 ], [ 438, 446 ], [ 431, 447 ], [ 447, 448 ], [ 448, 449 ], [ 448, 450 ], [ 448, 451 ], [ 451, 452 ], [ 451, 453 ], [ 448, 454 ], [ 448, 455 ], [ 448, 456 ], [ 394, 457 ], [ 457, 458 ], [ 458, 459 ], [ 392, 460 ], [ 460, 461 ], [ 392, 462 ], [ 462, 463 ], [ 392, 464 ], [ 464, 465 ], [ 392, 466 ], [ 466, 467 ], [ 392, 468 ], [ 468, 469 ], [ 604, 470 ], [ 470, 471 ], [ 470, 472 ], [ 472, 473 ], [ 473, 474 ], [ 474, 475 ], [ 474, 476 ], [ 473, 477 ], [ 477, 478 ], [ 478, 479 ], [ 478, 480 ], [ 480, 481 ], [ 480, 482 ], [ 482, 483 ], [ 483, 484 ], [ 483, 485 ], [ 482, 486 ], [ 477, 487 ], [ 487, 488 ], [ 488, 489 ], [ 489, 490 ], [ 489, 491 ], [ 488, 492 ], [ 487, 493 ], [ 493, 494 ], [ 494, 495 ], [ 477, 496 ], [ 496, 497 ], [ 497, 498 ], [ 498, 499 ], [ 498, 500 ], [ 497, 501 ], [ 496, 502 ], [ 502, 503 ], [ 503, 504 ], [ 503, 505 ], [ 505, 506 ], [ 505, 507 ], [ 496, 508 ], [ 508, 509 ], [ 509, 510 ], [ 509, 511 ], [ 511, 512 ], [ 511, 513 ], [ 472, 514 ], [ 514, 515 ], [ 515, 516 ], [ 470, 517 ], [ 517, 518 ], [ 470, 519 ], [ 519, 520 ], [ 470, 521 ], [ 521, 522 ], [ 470, 523 ], [ 523, 524 ], [ 604, 525 ], [ 525, 526 ], [ 525, 527 ], [ 527, 528 ], [ 528, 529 ], [ 528, 530 ], [ 527, 531 ], [ 531, 532 ], [ 531, 533 ], [ 527, 534 ], [ 534, 535 ], [ 534, 536 ], [ 527, 537 ], [ 537, 538 ], [ 527, 539 ], [ 539, 540 ], [ 540, 541 ], [ 527, 542 ], [ 542, 543 ], [ 543, 544 ], [ 525, 545 ], [ 545, 546 ], [ 604, 547 ], [ 547, 548 ], [ 547, 549 ], [ 549, 550 ], [ 550, 551 ], [ 550, 552 ], [ 552, 553 ], [ 549, 554 ], [ 554, 555 ], [ 555, 556 ], [ 555, 557 ], [ 554, 558 ], [ 558, 559 ], [ 559, 560 ], [ 560, 561 ], [ 559, 562 ], [ 554, 563 ], [ 563, 564 ], [ 564, 565 ], [ 565, 566 ], [ 564, 567 ], [ 604, 568 ], [ 568, 569 ], [ 568, 570 ], [ 570, 571 ], [ 568, 572 ], [ 572, 573 ], [ 568, 574 ], [ 574, 575 ], [ 574, 576 ], [ 576, 577 ], [ 577, 578 ], [ 578, 579 ], [ 578, 580 ], [ 577, 581 ], [ 576, 582 ], [ 582, 583 ], [ 583, 584 ], [ 583, 585 ], [ 582, 586 ], [ 574, 587 ], [ 587, 588 ], [ 574, 589 ], [ 589, 590 ], [ 568, 591 ], [ 591, 592 ], [ 591, 593 ], [ 593, 594 ], [ 594, 595 ], [ 595, 596 ], [ 595, 597 ], [ 597, 598 ], [ 597, 599 ], [ 591, 600 ], [ 600, 601 ], [ 568, 602 ], [ 0, 603 ], [ 603, 604 ], [ 603, 605 ] ]
[ "import java.io.*;\nimport java.util.*;\nimport java.lang.Math;\n\npublic class Main{\n\tstatic BufferedReader reader;\n\tstatic StringTokenizer tokenizer;\n\tstatic PrintWriter writer;\n\n\tstatic int nextInt() throws IOException {\n\t\treturn Integer.parseInt(nextToken());\n\t}\n\n\tstatic long nextLong() throws IOException {\n\t\treturn Long.parseLong(nextToken());\n\t}\n\n\tstatic double nextDouble() throws IOException {\n\t\treturn Double.parseDouble(nextToken());\n\t}\n\n\tstatic String nextToken() throws IOException {\n\t\twhile (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t}\n\t\treturn tokenizer.nextToken();\n\t}\n\tstatic String nexts() throws IOException {\n\t \t tokenizer = new StringTokenizer(reader.readLine());\n\t \t String s=\"\";\n\t \t while (tokenizer.hasMoreTokens()) {\n\t\t\ts+=tokenizer.nextElement()+\" \";\n\t\t}\n\t\treturn s;\n\t}\n\n\t//String str=nextToken();\n\t//String[] s = str.split(\"\\\\s+\");\n\n\tpublic static int gcd(int x, int y){\n\t\tif (y == 0) return x; else return gcd(y, x % y);\n\t}\n\n\tpublic static boolean isPrime(int n) \n\t { \n\t // Corner cases \n\t if (n <= 1){\n\t\t return false; }\n\t if (n <= 3){\n\t\t return true; }\n\t \n\t // This is checked so that we can skip \n\t // middle five numbers in below loop \n\t if (n % 2 == 0 || n % 3 == 0){\n\t\t return false; }\n\t \n\t for (int i = 5; i * i <= n; i = i + 6) { //Checking 6i+1 & 6i-1\n\t if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }\n\t }\n\t\t\t//O(sqrt(n))\n\t return true; \n\t } \n\n\tpublic static void shuffle(int[] A) {\n\t\tfor (int i = 0; i < A.length; i++) {\n\t\t\tint j = (int)(i * Math.random());\n\t\t\tint tmp = A[i];\n\t\t\tA[i] = A[j];\n\t\t\tA[j] = tmp;\n\t\t}\n\t}\n\n\t public static long power(int x, long n)\n\t{\n\t long mod = 1000000007;\n\t\tif (n == 0) {\n\t\t\treturn 1;\n\t\t}\n\n\t\tlong pow = power(x, n / 2);\n\n\t\tif ((n & 1) == 1) {\n\t\t\treturn (x * pow * pow)%mod;\n\t\t}\n\t\treturn (pow * pow)%mod;\n\t}\n\t static long ncr(int n, int k) \n \t { \n \n \t\t long res = 1; \n \t\t // Since C(n, k) = C(n, n-k) \n \t\t if (k > n - k) { \n \t\t k = n - k; \n \t\t } \n \t\t // Calculate value of [n*(n-1)*---*(n-k+1)] / [k*(k-1)*---*1] \n \t\t for (int i = 0; i < k; ++i) { \n \t\t res *= (n - i); \n \t\t res /= (i + 1); \n \t\t } \n \t\t return res; \n }\n\tstatic int first(int arr[], int low, int high, int x, int n) //Returns first index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid =low + (high - low)/2; \n \t if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) \n \t\t return mid; \n \t else if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n); \n \t } \n \t\t return -1; \n \t } \n\n\tstatic int last(int arr[], int low, int high, int x, int n) //Returns last index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid = low + (high - low)/2; \n \t if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) \n \t\t return mid; \n \t else if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n); \n \t } \n \t\t return -1; \n\t } \n\tstatic int binarys(int[] arr, int l, int r, int x){\n \t while(l<=r){\n \t int mid = l+(r-l)/2;\n \t if(arr[mid]==x){\n \t return x;\n \t }\n \t if(arr[mid]<x){\n \t l=mid+1;\n \t }\n \t else{\n \t r=mid-1;\n \t }\n \t }\n\treturn -1;\n \t}\n\t static class R implements Comparable<R>{\n\t int x, y;\n\t public R(int x, int y) {\n\t this.x = x;\n\t this.y = y;\n\t }\n\t public int compareTo(R o) {\n \t\treturn x-o.x; //Increasing order(Which is usually required)\n \t\t}\n\t } \n\t// int t=a[i];\n\t// a[i]=a[j];\n\t// a[j]=t;\n\t//double d=Math.sqrt(Math.pow(Math.abs(x2-x1),2)+Math.pow(Math.abs(y2-y1),2));\n\tpublic static void main(String[] args) throws IOException {\n\t\treader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttokenizer = null;\n\t\twriter = new PrintWriter(System.out);\n\t\tsolve();\n\t\treader.close();\n\t\twriter.close();\n\t}\n\t\n\tprivate static void solve() throws IOException {\n\t\t//int t = nextInt();\n\t\t//while(t-->0){\n\t\t\t//long n = nextLong();\n\t\t\t//String s= nextToken();\n\t\t\t//long[] a=new long[n];\n\t\t\t//ArrayList<Integer> ar=new ArrayList<Integer>();\n\t\t\t//HashSet<Integer> set=new HashSet<Integer>();\n\t\t\t//HashMap<Integer,String> h=new HashMap<Integer,String>();\n\t\t\t//R[] a1=new R[n];\n\t\t\t//char[] c=nextToken().toCharArray();\n\n\t\t\tint n = nextInt();\n\t\t\tif(n==1){\n writer.println(\"0\");\n }\n else{\n writer.println(\"1\");\n }\n\t\t\t\n\t\t\t//writer.println(\"YES\");\n\t\t }\n\t//}\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "import java.lang.Math;", "Math", "java.lang", "public class Main{\n\tstatic BufferedReader reader;\n\tstatic StringTokenizer tokenizer;\n\tstatic PrintWriter writer;\n\n\tstatic int nextInt() throws IOException {\n\t\treturn Integer.parseInt(nextToken());\n\t}\n\n\tstatic long nextLong() throws IOException {\n\t\treturn Long.parseLong(nextToken());\n\t}\n\n\tstatic double nextDouble() throws IOException {\n\t\treturn Double.parseDouble(nextToken());\n\t}\n\n\tstatic String nextToken() throws IOException {\n\t\twhile (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t}\n\t\treturn tokenizer.nextToken();\n\t}\n\tstatic String nexts() throws IOException {\n\t \t tokenizer = new StringTokenizer(reader.readLine());\n\t \t String s=\"\";\n\t \t while (tokenizer.hasMoreTokens()) {\n\t\t\ts+=tokenizer.nextElement()+\" \";\n\t\t}\n\t\treturn s;\n\t}\n\n\t//String str=nextToken();\n\t//String[] s = str.split(\"\\\\s+\");\n\n\tpublic static int gcd(int x, int y){\n\t\tif (y == 0) return x; else return gcd(y, x % y);\n\t}\n\n\tpublic static boolean isPrime(int n) \n\t { \n\t // Corner cases \n\t if (n <= 1){\n\t\t return false; }\n\t if (n <= 3){\n\t\t return true; }\n\t \n\t // This is checked so that we can skip \n\t // middle five numbers in below loop \n\t if (n % 2 == 0 || n % 3 == 0){\n\t\t return false; }\n\t \n\t for (int i = 5; i * i <= n; i = i + 6) { //Checking 6i+1 & 6i-1\n\t if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }\n\t }\n\t\t\t//O(sqrt(n))\n\t return true; \n\t } \n\n\tpublic static void shuffle(int[] A) {\n\t\tfor (int i = 0; i < A.length; i++) {\n\t\t\tint j = (int)(i * Math.random());\n\t\t\tint tmp = A[i];\n\t\t\tA[i] = A[j];\n\t\t\tA[j] = tmp;\n\t\t}\n\t}\n\n\t public static long power(int x, long n)\n\t{\n\t long mod = 1000000007;\n\t\tif (n == 0) {\n\t\t\treturn 1;\n\t\t}\n\n\t\tlong pow = power(x, n / 2);\n\n\t\tif ((n & 1) == 1) {\n\t\t\treturn (x * pow * pow)%mod;\n\t\t}\n\t\treturn (pow * pow)%mod;\n\t}\n\t static long ncr(int n, int k) \n \t { \n \n \t\t long res = 1; \n \t\t // Since C(n, k) = C(n, n-k) \n \t\t if (k > n - k) { \n \t\t k = n - k; \n \t\t } \n \t\t // Calculate value of [n*(n-1)*---*(n-k+1)] / [k*(k-1)*---*1] \n \t\t for (int i = 0; i < k; ++i) { \n \t\t res *= (n - i); \n \t\t res /= (i + 1); \n \t\t } \n \t\t return res; \n }\n\tstatic int first(int arr[], int low, int high, int x, int n) //Returns first index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid =low + (high - low)/2; \n \t if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) \n \t\t return mid; \n \t else if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n); \n \t } \n \t\t return -1; \n \t } \n\n\tstatic int last(int arr[], int low, int high, int x, int n) //Returns last index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid = low + (high - low)/2; \n \t if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) \n \t\t return mid; \n \t else if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n); \n \t } \n \t\t return -1; \n\t } \n\tstatic int binarys(int[] arr, int l, int r, int x){\n \t while(l<=r){\n \t int mid = l+(r-l)/2;\n \t if(arr[mid]==x){\n \t return x;\n \t }\n \t if(arr[mid]<x){\n \t l=mid+1;\n \t }\n \t else{\n \t r=mid-1;\n \t }\n \t }\n\treturn -1;\n \t}\n\t static class R implements Comparable<R>{\n\t int x, y;\n\t public R(int x, int y) {\n\t this.x = x;\n\t this.y = y;\n\t }\n\t public int compareTo(R o) {\n \t\treturn x-o.x; //Increasing order(Which is usually required)\n \t\t}\n\t } \n\t// int t=a[i];\n\t// a[i]=a[j];\n\t// a[j]=t;\n\t//double d=Math.sqrt(Math.pow(Math.abs(x2-x1),2)+Math.pow(Math.abs(y2-y1),2));\n\tpublic static void main(String[] args) throws IOException {\n\t\treader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttokenizer = null;\n\t\twriter = new PrintWriter(System.out);\n\t\tsolve();\n\t\treader.close();\n\t\twriter.close();\n\t}\n\t\n\tprivate static void solve() throws IOException {\n\t\t//int t = nextInt();\n\t\t//while(t-->0){\n\t\t\t//long n = nextLong();\n\t\t\t//String s= nextToken();\n\t\t\t//long[] a=new long[n];\n\t\t\t//ArrayList<Integer> ar=new ArrayList<Integer>();\n\t\t\t//HashSet<Integer> set=new HashSet<Integer>();\n\t\t\t//HashMap<Integer,String> h=new HashMap<Integer,String>();\n\t\t\t//R[] a1=new R[n];\n\t\t\t//char[] c=nextToken().toCharArray();\n\n\t\t\tint n = nextInt();\n\t\t\tif(n==1){\n writer.println(\"0\");\n }\n else{\n writer.println(\"1\");\n }\n\t\t\t\n\t\t\t//writer.println(\"YES\");\n\t\t }\n\t//}\n}", "Main", "static BufferedReader reader;", "reader", "static StringTokenizer tokenizer;", "tokenizer", "static PrintWriter writer;", "writer", "static int nextInt() throws IOException {\n\t\treturn Integer.parseInt(nextToken());\n\t}", "nextInt", "{\n\t\treturn Integer.parseInt(nextToken());\n\t}", "return Integer.parseInt(nextToken());", "Integer.parseInt(nextToken())", "Integer.parseInt", "Integer", "nextToken()", "nextToken", "static long nextLong() throws IOException {\n\t\treturn Long.parseLong(nextToken());\n\t}", "nextLong", "{\n\t\treturn Long.parseLong(nextToken());\n\t}", "return Long.parseLong(nextToken());", "Long.parseLong(nextToken())", "Long.parseLong", "Long", "nextToken()", "nextToken", "static double nextDouble() throws IOException {\n\t\treturn Double.parseDouble(nextToken());\n\t}", "nextDouble", "{\n\t\treturn Double.parseDouble(nextToken());\n\t}", "return Double.parseDouble(nextToken());", "Double.parseDouble(nextToken())", "Double.parseDouble", "Double", "nextToken()", "nextToken", "static String nextToken() throws IOException {\n\t\twhile (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t}\n\t\treturn tokenizer.nextToken();\n\t}", "nextToken", "{\n\t\twhile (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t}\n\t\treturn tokenizer.nextToken();\n\t}", "while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t}", "tokenizer == null || !tokenizer.hasMoreTokens()", "tokenizer == null", "tokenizer", "null", "!tokenizer.hasMoreTokens()", "tokenizer.hasMoreTokens()", "tokenizer.hasMoreTokens", "tokenizer", "{\n\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t}", "tokenizer = new StringTokenizer(reader.readLine())", "tokenizer", "new StringTokenizer(reader.readLine())", "return tokenizer.nextToken();", "tokenizer.nextToken()", "tokenizer.nextToken", "tokenizer", "static String nexts() throws IOException {\n\t \t tokenizer = new StringTokenizer(reader.readLine());\n\t \t String s=\"\";\n\t \t while (tokenizer.hasMoreTokens()) {\n\t\t\ts+=tokenizer.nextElement()+\" \";\n\t\t}\n\t\treturn s;\n\t}", "nexts", "{\n\t \t tokenizer = new StringTokenizer(reader.readLine());\n\t \t String s=\"\";\n\t \t while (tokenizer.hasMoreTokens()) {\n\t\t\ts+=tokenizer.nextElement()+\" \";\n\t\t}\n\t\treturn s;\n\t}", "tokenizer = new StringTokenizer(reader.readLine())", "tokenizer", "new StringTokenizer(reader.readLine())", "String s=\"\";", "s", "\"\"", "while (tokenizer.hasMoreTokens()) {\n\t\t\ts+=tokenizer.nextElement()+\" \";\n\t\t}", "tokenizer.hasMoreTokens()", "tokenizer.hasMoreTokens", "tokenizer", "{\n\t\t\ts+=tokenizer.nextElement()+\" \";\n\t\t}", "s+=tokenizer.nextElement()+\" \"", "s", "tokenizer.nextElement()+\" \"", "tokenizer.nextElement()", "tokenizer.nextElement", "tokenizer", "\" \"", "return s;", "s", "public static int gcd(int x, int y){\n\t\tif (y == 0) return x; else return gcd(y, x % y);\n\t}", "gcd", "{\n\t\tif (y == 0) return x; else return gcd(y, x % y);\n\t}", "if (y == 0) return x; else return gcd(y, x % y);", "y == 0", "y", "0", "return x;", "x", "return gcd(y, x % y);", "gcd(y, x % y)", "gcd", "y", "x % y", "x", "y", "int x", "x", "int y", "y", "public static boolean isPrime(int n) \n\t { \n\t // Corner cases \n\t if (n <= 1){\n\t\t return false; }\n\t if (n <= 3){\n\t\t return true; }\n\t \n\t // This is checked so that we can skip \n\t // middle five numbers in below loop \n\t if (n % 2 == 0 || n % 3 == 0){\n\t\t return false; }\n\t \n\t for (int i = 5; i * i <= n; i = i + 6) { //Checking 6i+1 & 6i-1\n\t if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }\n\t }\n\t\t\t//O(sqrt(n))\n\t return true; \n\t }", "isPrime", "{ \n\t // Corner cases \n\t if (n <= 1){\n\t\t return false; }\n\t if (n <= 3){\n\t\t return true; }\n\t \n\t // This is checked so that we can skip \n\t // middle five numbers in below loop \n\t if (n % 2 == 0 || n % 3 == 0){\n\t\t return false; }\n\t \n\t for (int i = 5; i * i <= n; i = i + 6) { //Checking 6i+1 & 6i-1\n\t if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }\n\t }\n\t\t\t//O(sqrt(n))\n\t return true; \n\t }", "if (n <= 1){\n\t\t return false; }", "n <= 1", "n", "1", "{\n\t\t return false; }", "return false;", "false", "if (n <= 3){\n\t\t return true; }", "n <= 3", "n", "3", "{\n\t\t return true; }", "return true;", "true", "if (n % 2 == 0 || n % 3 == 0){\n\t\t return false; }", "n % 2 == 0 || n % 3 == 0", "n % 2 == 0", "n % 2", "n", "2", "0", "n % 3 == 0", "n % 3", "n", "3", "0", "{\n\t\t return false; }", "return false;", "false", "for (int i = 5; i * i <= n; i = i + 6) { //Checking 6i+1 & 6i-1\n\t if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }\n\t }", "int i = 5;", "int i = 5;", "i", "5", "i * i <= n", "i * i", "i", "i", "n", "i = i + 6", "i = i + 6", "i", "i + 6", "i", "6", "{ //Checking 6i+1 & 6i-1\n\t if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }\n\t }", "{ //Checking 6i+1 & 6i-1\n\t if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }\n\t }", "if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }", "n % i == 0 || n % (i + 2) == 0", "n % i == 0", "n % i", "n", "i", "0", "n % (i + 2) == 0", "n % (i + 2)", "n", "(i + 2)", "i", "2", "0", "{\n\t \treturn false; }", "return false;", "false", "return true;", "true", "int n", "n", "public static void shuffle(int[] A) {\n\t\tfor (int i = 0; i < A.length; i++) {\n\t\t\tint j = (int)(i * Math.random());\n\t\t\tint tmp = A[i];\n\t\t\tA[i] = A[j];\n\t\t\tA[j] = tmp;\n\t\t}\n\t}", "shuffle", "{\n\t\tfor (int i = 0; i < A.length; i++) {\n\t\t\tint j = (int)(i * Math.random());\n\t\t\tint tmp = A[i];\n\t\t\tA[i] = A[j];\n\t\t\tA[j] = tmp;\n\t\t}\n\t}", "for (int i = 0; i < A.length; i++) {\n\t\t\tint j = (int)(i * Math.random());\n\t\t\tint tmp = A[i];\n\t\t\tA[i] = A[j];\n\t\t\tA[j] = tmp;\n\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < A.length", "i", "A.length", "A", "A.length", "i++", "i++", "i", "{\n\t\t\tint j = (int)(i * Math.random());\n\t\t\tint tmp = A[i];\n\t\t\tA[i] = A[j];\n\t\t\tA[j] = tmp;\n\t\t}", "{\n\t\t\tint j = (int)(i * Math.random());\n\t\t\tint tmp = A[i];\n\t\t\tA[i] = A[j];\n\t\t\tA[j] = tmp;\n\t\t}", "int j = (int)(i * Math.random());", "j", "(int)(i * Math.random())", "i", "Math.random()", "Math.random", "Math", "int tmp = A[i];", "tmp", "A[i]", "A", "i", "A[i] = A[j]", "A[i]", "A", "i", "A[j]", "A", "j", "A[j] = tmp", "A[j]", "A", "j", "tmp", "int[] A", "A", "public static long power(int x, long n)\n\t{\n\t long mod = 1000000007;\n\t\tif (n == 0) {\n\t\t\treturn 1;\n\t\t}\n\n\t\tlong pow = power(x, n / 2);\n\n\t\tif ((n & 1) == 1) {\n\t\t\treturn (x * pow * pow)%mod;\n\t\t}\n\t\treturn (pow * pow)%mod;\n\t}", "power", "{\n\t long mod = 1000000007;\n\t\tif (n == 0) {\n\t\t\treturn 1;\n\t\t}\n\n\t\tlong pow = power(x, n / 2);\n\n\t\tif ((n & 1) == 1) {\n\t\t\treturn (x * pow * pow)%mod;\n\t\t}\n\t\treturn (pow * pow)%mod;\n\t}", "long mod = 1000000007;", "mod", "1000000007", "if (n == 0) {\n\t\t\treturn 1;\n\t\t}", "n == 0", "n", "0", "{\n\t\t\treturn 1;\n\t\t}", "return 1;", "1", "long pow = power(x, n / 2);", "pow", "power(x, n / 2)", "power", "x", "n / 2", "n", "2", "if ((n & 1) == 1) {\n\t\t\treturn (x * pow * pow)%mod;\n\t\t}", "(n & 1) == 1", "(n & 1)", "n", "1", "1", "{\n\t\t\treturn (x * pow * pow)%mod;\n\t\t}", "return (x * pow * pow)%mod;", "(x * pow * pow)%mod", "(x * pow * pow)", "x * pow * pow", "x", "pow", "pow", "mod", "return (pow * pow)%mod;", "(pow * pow)%mod", "(pow * pow)", "pow", "pow", "mod", "int x", "x", "long n", "n", "static long ncr(int n, int k) \n \t { \n \n \t\t long res = 1; \n \t\t // Since C(n, k) = C(n, n-k) \n \t\t if (k > n - k) { \n \t\t k = n - k; \n \t\t } \n \t\t // Calculate value of [n*(n-1)*---*(n-k+1)] / [k*(k-1)*---*1] \n \t\t for (int i = 0; i < k; ++i) { \n \t\t res *= (n - i); \n \t\t res /= (i + 1); \n \t\t } \n \t\t return res; \n }", "ncr", "{ \n \n \t\t long res = 1; \n \t\t // Since C(n, k) = C(n, n-k) \n \t\t if (k > n - k) { \n \t\t k = n - k; \n \t\t } \n \t\t // Calculate value of [n*(n-1)*---*(n-k+1)] / [k*(k-1)*---*1] \n \t\t for (int i = 0; i < k; ++i) { \n \t\t res *= (n - i); \n \t\t res /= (i + 1); \n \t\t } \n \t\t return res; \n }", "long res = 1;", "res", "1", "if (k > n - k) { \n \t\t k = n - k; \n \t\t }", "k > n - k", "k", "n - k", "n", "k", "{ \n \t\t k = n - k; \n \t\t }", "k = n - k", "k", "n - k", "n", "k", "for (int i = 0; i < k; ++i) { \n \t\t res *= (n - i); \n \t\t res /= (i + 1); \n \t\t }", "int i = 0;", "int i = 0;", "i", "0", "i < k", "i", "k", "++i", "++i", "i", "{ \n \t\t res *= (n - i); \n \t\t res /= (i + 1); \n \t\t }", "{ \n \t\t res *= (n - i); \n \t\t res /= (i + 1); \n \t\t }", "res *= (n - i)", "res", "(n - i)", "n", "i", "res /= (i + 1)", "res", "(i + 1)", "i", "1", "return res;", "res", "int n", "n", "int k", "k", "static int first(int arr[], int low, int high, int x, int n) //Returns first index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid =low + (high - low)/2; \n \t if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) \n \t\t return mid; \n \t else if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n); \n \t } \n \t\t return -1; \n \t }", "first", "{ \n \t if(high >= low) \n \t { \n \t \n \t int mid =low + (high - low)/2; \n \t if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) \n \t\t return mid; \n \t else if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n); \n \t } \n \t\t return -1; \n \t }", "if(high >= low) \n \t { \n \t \n \t int mid =low + (high - low)/2; \n \t if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) \n \t\t return mid; \n \t else if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n); \n \t }", "high >= low", "high", "low", "{ \n \t \n \t int mid =low + (high - low)/2; \n \t if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) \n \t\t return mid; \n \t else if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n); \n \t }", "int mid =low + (high - low)/2;", "mid", "low + (high - low)/2", "low", "(high - low)/2", "(high - low)", "high", "low", "2", "if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) \n \t\t return mid; \n \t else if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n);", "( mid == 0 || x > arr[mid-1]) && arr[mid] == x", "( mid == 0 || x > arr[mid-1])", "mid == 0", "mid", "0", "x > arr[mid-1]", "x", "arr[mid-1]", "arr", "mid-1", "mid", "1", "arr[mid] == x", "arr[mid]", "arr", "mid", "x", "return mid;", "mid", "if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n);", "x > arr[mid]", "x", "arr[mid]", "arr", "mid", "return first(arr, (mid + 1), high, x, n);", "first(arr, (mid + 1), high, x, n)", "first", "arr", "(mid + 1)", "mid", "1", "high", "x", "n", "return first(arr, low, (mid -1), x, n);", "first(arr, low, (mid -1), x, n)", "first", "arr", "low", "(mid -1)", "mid", "1", "x", "n", "return -1;", "-1", "1", "int arr[]", "arr", "int low", "low", "int high", "high", "int x", "x", "int n", "n", "static int last(int arr[], int low, int high, int x, int n) //Returns last index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid = low + (high - low)/2; \n \t if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) \n \t\t return mid; \n \t else if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n); \n \t } \n \t\t return -1; \n\t }", "last", "{ \n \t if(high >= low) \n \t { \n \t \n \t int mid = low + (high - low)/2; \n \t if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) \n \t\t return mid; \n \t else if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n); \n \t } \n \t\t return -1; \n\t }", "if(high >= low) \n \t { \n \t \n \t int mid = low + (high - low)/2; \n \t if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) \n \t\t return mid; \n \t else if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n); \n \t }", "high >= low", "high", "low", "{ \n \t \n \t int mid = low + (high - low)/2; \n \t if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) \n \t\t return mid; \n \t else if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n); \n \t }", "int mid = low + (high - low)/2;", "mid", "low + (high - low)/2", "low", "(high - low)/2", "(high - low)", "high", "low", "2", "if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) \n \t\t return mid; \n \t else if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n);", "( mid == n-1 || x < arr[mid+1]) && arr[mid] == x", "( mid == n-1 || x < arr[mid+1])", "mid == n-1", "mid", "n-1", "n", "1", "x < arr[mid+1]", "x", "arr[mid+1]", "arr", "mid+1", "mid", "1", "arr[mid] == x", "arr[mid]", "arr", "mid", "x", "return mid;", "mid", "if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n);", "x < arr[mid]", "x", "arr[mid]", "arr", "mid", "return last(arr, low, (mid -1), x, n);", "last(arr, low, (mid -1), x, n)", "last", "arr", "low", "(mid -1)", "mid", "1", "x", "n", "return last(arr, (mid + 1), high, x, n);", "last(arr, (mid + 1), high, x, n)", "last", "arr", "(mid + 1)", "mid", "1", "high", "x", "n", "return -1;", "-1", "1", "int arr[]", "arr", "int low", "low", "int high", "high", "int x", "x", "int n", "n", "static int binarys(int[] arr, int l, int r, int x){\n \t while(l<=r){\n \t int mid = l+(r-l)/2;\n \t if(arr[mid]==x){\n \t return x;\n \t }\n \t if(arr[mid]<x){\n \t l=mid+1;\n \t }\n \t else{\n \t r=mid-1;\n \t }\n \t }\n\treturn -1;\n \t}", "binarys", "{\n \t while(l<=r){\n \t int mid = l+(r-l)/2;\n \t if(arr[mid]==x){\n \t return x;\n \t }\n \t if(arr[mid]<x){\n \t l=mid+1;\n \t }\n \t else{\n \t r=mid-1;\n \t }\n \t }\n\treturn -1;\n \t}", "while(l<=r){\n \t int mid = l+(r-l)/2;\n \t if(arr[mid]==x){\n \t return x;\n \t }\n \t if(arr[mid]<x){\n \t l=mid+1;\n \t }\n \t else{\n \t r=mid-1;\n \t }\n \t }", "l<=r", "l", "r", "{\n \t int mid = l+(r-l)/2;\n \t if(arr[mid]==x){\n \t return x;\n \t }\n \t if(arr[mid]<x){\n \t l=mid+1;\n \t }\n \t else{\n \t r=mid-1;\n \t }\n \t }", "int mid = l+(r-l)/2;", "mid", "l+(r-l)/2", "l", "(r-l)/2", "(r-l)", "r", "l", "2", "if(arr[mid]==x){\n \t return x;\n \t }", "arr[mid]==x", "arr[mid]", "arr", "mid", "x", "{\n \t return x;\n \t }", "return x;", "x", "if(arr[mid]<x){\n \t l=mid+1;\n \t }\n \t else{\n \t r=mid-1;\n \t }", "arr[mid]<x", "arr[mid]", "arr", "mid", "x", "{\n \t l=mid+1;\n \t }", "l=mid+1", "l", "mid+1", "mid", "1", "{\n \t r=mid-1;\n \t }", "r=mid-1", "r", "mid-1", "mid", "1", "return -1;", "-1", "1", "int[] arr", "arr", "int l", "l", "int r", "r", "int x", "x", "// int t=a[i];\n\t// a[i]=a[j];\n\t// a[j]=t;\n\t//double d=Math.sqrt(Math.pow(Math.abs(x2-x1),2)+Math.pow(Math.abs(y2-y1),2));\n\tpublic static void main(String[] args) throws IOException {\n\t\treader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttokenizer = null;\n\t\twriter = new PrintWriter(System.out);\n\t\tsolve();\n\t\treader.close();\n\t\twriter.close();\n\t}", "main", "{\n\t\treader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttokenizer = null;\n\t\twriter = new PrintWriter(System.out);\n\t\tsolve();\n\t\treader.close();\n\t\twriter.close();\n\t}", "reader = new BufferedReader(new InputStreamReader(System.in))", "reader", "new BufferedReader(new InputStreamReader(System.in))", "tokenizer = null", "tokenizer", "null", "writer = new PrintWriter(System.out)", "writer", "new PrintWriter(System.out)", "solve()", "solve", "reader.close()", "reader.close", "reader", "writer.close()", "writer.close", "writer", "String[] args", "args", "private static void solve() throws IOException {\n\t\t//int t = nextInt();\n\t\t//while(t-->0){\n\t\t\t//long n = nextLong();\n\t\t\t//String s= nextToken();\n\t\t\t//long[] a=new long[n];\n\t\t\t//ArrayList<Integer> ar=new ArrayList<Integer>();\n\t\t\t//HashSet<Integer> set=new HashSet<Integer>();\n\t\t\t//HashMap<Integer,String> h=new HashMap<Integer,String>();\n\t\t\t//R[] a1=new R[n];\n\t\t\t//char[] c=nextToken().toCharArray();\n\n\t\t\tint n = nextInt();\n\t\t\tif(n==1){\n writer.println(\"0\");\n }\n else{\n writer.println(\"1\");\n }\n\t\t\t\n\t\t\t//writer.println(\"YES\");\n\t\t }", "solve", "{\n\t\t//int t = nextInt();\n\t\t//while(t-->0){\n\t\t\t//long n = nextLong();\n\t\t\t//String s= nextToken();\n\t\t\t//long[] a=new long[n];\n\t\t\t//ArrayList<Integer> ar=new ArrayList<Integer>();\n\t\t\t//HashSet<Integer> set=new HashSet<Integer>();\n\t\t\t//HashMap<Integer,String> h=new HashMap<Integer,String>();\n\t\t\t//R[] a1=new R[n];\n\t\t\t//char[] c=nextToken().toCharArray();\n\n\t\t\tint n = nextInt();\n\t\t\tif(n==1){\n writer.println(\"0\");\n }\n else{\n writer.println(\"1\");\n }\n\t\t\t\n\t\t\t//writer.println(\"YES\");\n\t\t }", "int n = nextInt();", "n", "nextInt()", "nextInt", "if(n==1){\n writer.println(\"0\");\n }\n else{\n writer.println(\"1\");\n }", "n==1", "n", "1", "{\n writer.println(\"0\");\n }", "writer.println(\"0\")", "writer.println", "writer", "\"0\"", "{\n writer.println(\"1\");\n }", "writer.println(\"1\")", "writer.println", "writer", "\"1\"", "static class R implements Comparable<R>{\n\t int x, y;\n\t public R(int x, int y) {\n\t this.x = x;\n\t this.y = y;\n\t }\n\t public int compareTo(R o) {\n \t\treturn x-o.x; //Increasing order(Which is usually required)\n \t\t}\n\t }", "R", "int x", "x", "y;", "y", "public R(int x, int y) {\n\t this.x = x;\n\t this.y = y;\n\t }", "R", "{\n\t this.x = x;\n\t this.y = y;\n\t }", "this.x = x", "this.x", "this", "this.x", "x", "this.y = y", "this.y", "this", "this.y", "y", "int x", "x", "int y", "y", "public int compareTo(R o) {\n \t\treturn x-o.x; //Increasing order(Which is usually required)\n \t\t}", "compareTo", "{\n \t\treturn x-o.x; //Increasing order(Which is usually required)\n \t\t}", "return x-o.x; //Increasing order(Which is usually required)", "x-o.x", "x", "o.x", "o", "o.x", "R o", "o", "Comparable", "public class Main{\n\tstatic BufferedReader reader;\n\tstatic StringTokenizer tokenizer;\n\tstatic PrintWriter writer;\n\n\tstatic int nextInt() throws IOException {\n\t\treturn Integer.parseInt(nextToken());\n\t}\n\n\tstatic long nextLong() throws IOException {\n\t\treturn Long.parseLong(nextToken());\n\t}\n\n\tstatic double nextDouble() throws IOException {\n\t\treturn Double.parseDouble(nextToken());\n\t}\n\n\tstatic String nextToken() throws IOException {\n\t\twhile (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t}\n\t\treturn tokenizer.nextToken();\n\t}\n\tstatic String nexts() throws IOException {\n\t \t tokenizer = new StringTokenizer(reader.readLine());\n\t \t String s=\"\";\n\t \t while (tokenizer.hasMoreTokens()) {\n\t\t\ts+=tokenizer.nextElement()+\" \";\n\t\t}\n\t\treturn s;\n\t}\n\n\t//String str=nextToken();\n\t//String[] s = str.split(\"\\\\s+\");\n\n\tpublic static int gcd(int x, int y){\n\t\tif (y == 0) return x; else return gcd(y, x % y);\n\t}\n\n\tpublic static boolean isPrime(int n) \n\t { \n\t // Corner cases \n\t if (n <= 1){\n\t\t return false; }\n\t if (n <= 3){\n\t\t return true; }\n\t \n\t // This is checked so that we can skip \n\t // middle five numbers in below loop \n\t if (n % 2 == 0 || n % 3 == 0){\n\t\t return false; }\n\t \n\t for (int i = 5; i * i <= n; i = i + 6) { //Checking 6i+1 & 6i-1\n\t if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }\n\t }\n\t\t\t//O(sqrt(n))\n\t return true; \n\t } \n\n\tpublic static void shuffle(int[] A) {\n\t\tfor (int i = 0; i < A.length; i++) {\n\t\t\tint j = (int)(i * Math.random());\n\t\t\tint tmp = A[i];\n\t\t\tA[i] = A[j];\n\t\t\tA[j] = tmp;\n\t\t}\n\t}\n\n\t public static long power(int x, long n)\n\t{\n\t long mod = 1000000007;\n\t\tif (n == 0) {\n\t\t\treturn 1;\n\t\t}\n\n\t\tlong pow = power(x, n / 2);\n\n\t\tif ((n & 1) == 1) {\n\t\t\treturn (x * pow * pow)%mod;\n\t\t}\n\t\treturn (pow * pow)%mod;\n\t}\n\t static long ncr(int n, int k) \n \t { \n \n \t\t long res = 1; \n \t\t // Since C(n, k) = C(n, n-k) \n \t\t if (k > n - k) { \n \t\t k = n - k; \n \t\t } \n \t\t // Calculate value of [n*(n-1)*---*(n-k+1)] / [k*(k-1)*---*1] \n \t\t for (int i = 0; i < k; ++i) { \n \t\t res *= (n - i); \n \t\t res /= (i + 1); \n \t\t } \n \t\t return res; \n }\n\tstatic int first(int arr[], int low, int high, int x, int n) //Returns first index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid =low + (high - low)/2; \n \t if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) \n \t\t return mid; \n \t else if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n); \n \t } \n \t\t return -1; \n \t } \n\n\tstatic int last(int arr[], int low, int high, int x, int n) //Returns last index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid = low + (high - low)/2; \n \t if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) \n \t\t return mid; \n \t else if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n); \n \t } \n \t\t return -1; \n\t } \n\tstatic int binarys(int[] arr, int l, int r, int x){\n \t while(l<=r){\n \t int mid = l+(r-l)/2;\n \t if(arr[mid]==x){\n \t return x;\n \t }\n \t if(arr[mid]<x){\n \t l=mid+1;\n \t }\n \t else{\n \t r=mid-1;\n \t }\n \t }\n\treturn -1;\n \t}\n\t static class R implements Comparable<R>{\n\t int x, y;\n\t public R(int x, int y) {\n\t this.x = x;\n\t this.y = y;\n\t }\n\t public int compareTo(R o) {\n \t\treturn x-o.x; //Increasing order(Which is usually required)\n \t\t}\n\t } \n\t// int t=a[i];\n\t// a[i]=a[j];\n\t// a[j]=t;\n\t//double d=Math.sqrt(Math.pow(Math.abs(x2-x1),2)+Math.pow(Math.abs(y2-y1),2));\n\tpublic static void main(String[] args) throws IOException {\n\t\treader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttokenizer = null;\n\t\twriter = new PrintWriter(System.out);\n\t\tsolve();\n\t\treader.close();\n\t\twriter.close();\n\t}\n\t\n\tprivate static void solve() throws IOException {\n\t\t//int t = nextInt();\n\t\t//while(t-->0){\n\t\t\t//long n = nextLong();\n\t\t\t//String s= nextToken();\n\t\t\t//long[] a=new long[n];\n\t\t\t//ArrayList<Integer> ar=new ArrayList<Integer>();\n\t\t\t//HashSet<Integer> set=new HashSet<Integer>();\n\t\t\t//HashMap<Integer,String> h=new HashMap<Integer,String>();\n\t\t\t//R[] a1=new R[n];\n\t\t\t//char[] c=nextToken().toCharArray();\n\n\t\t\tint n = nextInt();\n\t\t\tif(n==1){\n writer.println(\"0\");\n }\n else{\n writer.println(\"1\");\n }\n\t\t\t\n\t\t\t//writer.println(\"YES\");\n\t\t }\n\t//}\n}", "public class Main{\n\tstatic BufferedReader reader;\n\tstatic StringTokenizer tokenizer;\n\tstatic PrintWriter writer;\n\n\tstatic int nextInt() throws IOException {\n\t\treturn Integer.parseInt(nextToken());\n\t}\n\n\tstatic long nextLong() throws IOException {\n\t\treturn Long.parseLong(nextToken());\n\t}\n\n\tstatic double nextDouble() throws IOException {\n\t\treturn Double.parseDouble(nextToken());\n\t}\n\n\tstatic String nextToken() throws IOException {\n\t\twhile (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t}\n\t\treturn tokenizer.nextToken();\n\t}\n\tstatic String nexts() throws IOException {\n\t \t tokenizer = new StringTokenizer(reader.readLine());\n\t \t String s=\"\";\n\t \t while (tokenizer.hasMoreTokens()) {\n\t\t\ts+=tokenizer.nextElement()+\" \";\n\t\t}\n\t\treturn s;\n\t}\n\n\t//String str=nextToken();\n\t//String[] s = str.split(\"\\\\s+\");\n\n\tpublic static int gcd(int x, int y){\n\t\tif (y == 0) return x; else return gcd(y, x % y);\n\t}\n\n\tpublic static boolean isPrime(int n) \n\t { \n\t // Corner cases \n\t if (n <= 1){\n\t\t return false; }\n\t if (n <= 3){\n\t\t return true; }\n\t \n\t // This is checked so that we can skip \n\t // middle five numbers in below loop \n\t if (n % 2 == 0 || n % 3 == 0){\n\t\t return false; }\n\t \n\t for (int i = 5; i * i <= n; i = i + 6) { //Checking 6i+1 & 6i-1\n\t if (n % i == 0 || n % (i + 2) == 0) {\n\t \treturn false; }\n\t }\n\t\t\t//O(sqrt(n))\n\t return true; \n\t } \n\n\tpublic static void shuffle(int[] A) {\n\t\tfor (int i = 0; i < A.length; i++) {\n\t\t\tint j = (int)(i * Math.random());\n\t\t\tint tmp = A[i];\n\t\t\tA[i] = A[j];\n\t\t\tA[j] = tmp;\n\t\t}\n\t}\n\n\t public static long power(int x, long n)\n\t{\n\t long mod = 1000000007;\n\t\tif (n == 0) {\n\t\t\treturn 1;\n\t\t}\n\n\t\tlong pow = power(x, n / 2);\n\n\t\tif ((n & 1) == 1) {\n\t\t\treturn (x * pow * pow)%mod;\n\t\t}\n\t\treturn (pow * pow)%mod;\n\t}\n\t static long ncr(int n, int k) \n \t { \n \n \t\t long res = 1; \n \t\t // Since C(n, k) = C(n, n-k) \n \t\t if (k > n - k) { \n \t\t k = n - k; \n \t\t } \n \t\t // Calculate value of [n*(n-1)*---*(n-k+1)] / [k*(k-1)*---*1] \n \t\t for (int i = 0; i < k; ++i) { \n \t\t res *= (n - i); \n \t\t res /= (i + 1); \n \t\t } \n \t\t return res; \n }\n\tstatic int first(int arr[], int low, int high, int x, int n) //Returns first index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid =low + (high - low)/2; \n \t if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) \n \t\t return mid; \n \t else if(x > arr[mid]) \n \t\t return first(arr, (mid + 1), high, x, n); \n \telse\n \t\t return first(arr, low, (mid -1), x, n); \n \t } \n \t\t return -1; \n \t } \n\n\tstatic int last(int arr[], int low, int high, int x, int n) //Returns last index of x in sorted arr else -1\n \t { \n \t if(high >= low) \n \t { \n \t \n \t int mid = low + (high - low)/2; \n \t if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) \n \t\t return mid; \n \t else if(x < arr[mid]) \n \t\t return last(arr, low, (mid -1), x, n); \n \t else\n \t\t return last(arr, (mid + 1), high, x, n); \n \t } \n \t\t return -1; \n\t } \n\tstatic int binarys(int[] arr, int l, int r, int x){\n \t while(l<=r){\n \t int mid = l+(r-l)/2;\n \t if(arr[mid]==x){\n \t return x;\n \t }\n \t if(arr[mid]<x){\n \t l=mid+1;\n \t }\n \t else{\n \t r=mid-1;\n \t }\n \t }\n\treturn -1;\n \t}\n\t static class R implements Comparable<R>{\n\t int x, y;\n\t public R(int x, int y) {\n\t this.x = x;\n\t this.y = y;\n\t }\n\t public int compareTo(R o) {\n \t\treturn x-o.x; //Increasing order(Which is usually required)\n \t\t}\n\t } \n\t// int t=a[i];\n\t// a[i]=a[j];\n\t// a[j]=t;\n\t//double d=Math.sqrt(Math.pow(Math.abs(x2-x1),2)+Math.pow(Math.abs(y2-y1),2));\n\tpublic static void main(String[] args) throws IOException {\n\t\treader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttokenizer = null;\n\t\twriter = new PrintWriter(System.out);\n\t\tsolve();\n\t\treader.close();\n\t\twriter.close();\n\t}\n\t\n\tprivate static void solve() throws IOException {\n\t\t//int t = nextInt();\n\t\t//while(t-->0){\n\t\t\t//long n = nextLong();\n\t\t\t//String s= nextToken();\n\t\t\t//long[] a=new long[n];\n\t\t\t//ArrayList<Integer> ar=new ArrayList<Integer>();\n\t\t\t//HashSet<Integer> set=new HashSet<Integer>();\n\t\t\t//HashMap<Integer,String> h=new HashMap<Integer,String>();\n\t\t\t//R[] a1=new R[n];\n\t\t\t//char[] c=nextToken().toCharArray();\n\n\t\t\tint n = nextInt();\n\t\t\tif(n==1){\n writer.println(\"0\");\n }\n else{\n writer.println(\"1\");\n }\n\t\t\t\n\t\t\t//writer.println(\"YES\");\n\t\t }\n\t//}\n}", "Main" ]
import java.io.*; import java.util.*; import java.lang.Math; public class Main{ static BufferedReader reader; static StringTokenizer tokenizer; static PrintWriter writer; static int nextInt() throws IOException { return Integer.parseInt(nextToken()); } static long nextLong() throws IOException { return Long.parseLong(nextToken()); } static double nextDouble() throws IOException { return Double.parseDouble(nextToken()); } static String nextToken() throws IOException { while (tokenizer == null || !tokenizer.hasMoreTokens()) { tokenizer = new StringTokenizer(reader.readLine()); } return tokenizer.nextToken(); } static String nexts() throws IOException { tokenizer = new StringTokenizer(reader.readLine()); String s=""; while (tokenizer.hasMoreTokens()) { s+=tokenizer.nextElement()+" "; } return s; } //String str=nextToken(); //String[] s = str.split("\\s+"); public static int gcd(int x, int y){ if (y == 0) return x; else return gcd(y, x % y); } public static boolean isPrime(int n) { // Corner cases if (n <= 1){ return false; } if (n <= 3){ return true; } // This is checked so that we can skip // middle five numbers in below loop if (n % 2 == 0 || n % 3 == 0){ return false; } for (int i = 5; i * i <= n; i = i + 6) { //Checking 6i+1 & 6i-1 if (n % i == 0 || n % (i + 2) == 0) { return false; } } //O(sqrt(n)) return true; } public static void shuffle(int[] A) { for (int i = 0; i < A.length; i++) { int j = (int)(i * Math.random()); int tmp = A[i]; A[i] = A[j]; A[j] = tmp; } } public static long power(int x, long n) { long mod = 1000000007; if (n == 0) { return 1; } long pow = power(x, n / 2); if ((n & 1) == 1) { return (x * pow * pow)%mod; } return (pow * pow)%mod; } static long ncr(int n, int k) { long res = 1; // Since C(n, k) = C(n, n-k) if (k > n - k) { k = n - k; } // Calculate value of [n*(n-1)*---*(n-k+1)] / [k*(k-1)*---*1] for (int i = 0; i < k; ++i) { res *= (n - i); res /= (i + 1); } return res; } static int first(int arr[], int low, int high, int x, int n) //Returns first index of x in sorted arr else -1 { if(high >= low) { int mid =low + (high - low)/2; if( ( mid == 0 || x > arr[mid-1]) && arr[mid] == x) return mid; else if(x > arr[mid]) return first(arr, (mid + 1), high, x, n); else return first(arr, low, (mid -1), x, n); } return -1; } static int last(int arr[], int low, int high, int x, int n) //Returns last index of x in sorted arr else -1 { if(high >= low) { int mid = low + (high - low)/2; if( ( mid == n-1 || x < arr[mid+1]) && arr[mid] == x ) return mid; else if(x < arr[mid]) return last(arr, low, (mid -1), x, n); else return last(arr, (mid + 1), high, x, n); } return -1; } static int binarys(int[] arr, int l, int r, int x){ while(l<=r){ int mid = l+(r-l)/2; if(arr[mid]==x){ return x; } if(arr[mid]<x){ l=mid+1; } else{ r=mid-1; } } return -1; } static class R implements Comparable<R>{ int x, y; public R(int x, int y) { this.x = x; this.y = y; } public int compareTo(R o) { return x-o.x; //Increasing order(Which is usually required) } } // int t=a[i]; // a[i]=a[j]; // a[j]=t; //double d=Math.sqrt(Math.pow(Math.abs(x2-x1),2)+Math.pow(Math.abs(y2-y1),2)); public static void main(String[] args) throws IOException { reader = new BufferedReader(new InputStreamReader(System.in)); tokenizer = null; writer = new PrintWriter(System.out); solve(); reader.close(); writer.close(); } private static void solve() throws IOException { //int t = nextInt(); //while(t-->0){ //long n = nextLong(); //String s= nextToken(); //long[] a=new long[n]; //ArrayList<Integer> ar=new ArrayList<Integer>(); //HashSet<Integer> set=new HashSet<Integer>(); //HashMap<Integer,String> h=new HashMap<Integer,String>(); //R[] a1=new R[n]; //char[] c=nextToken().toCharArray(); int n = nextInt(); if(n==1){ writer.println("0"); } else{ writer.println("1"); } //writer.println("YES"); } //} }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 2, 17, 17, 41, 13, 20, 17, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 13, 17, 30, 4, 18, 13, 17, 4, 18, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 29, 13, 29, 4, 13, 2, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 0, 18, 13, 13, 17, 0, 18, 13, 13, 17, 28, 13, 4, 18, 13, 13, 30, 30, 14, 2, 18, 13, 13, 17, 30, 4, 13, 13, 13, 13, 13, 13, 13, 13, 0, 18, 13, 13, 18, 13, 13, 14, 2, 18, 13, 13, 2, 13, 17, 30, 0, 13, 17, 14, 2, 2, 13, 18, 13, 13, 2, 13, 17, 30, 0, 13, 17, 14, 2, 13, 17, 30, 4, 18, 13, 13, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 168, 11 ], [ 168, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 14, 16 ], [ 168, 17 ], [ 17, 18 ], [ 17, 19 ], [ 168, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 23, 27 ], [ 27, 28 ], [ 27, 29 ], [ 23, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 23, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 35, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 35, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 45, 48 ], [ 23, 49 ], [ 49, 50 ], [ 50, 51 ], [ 21, 52 ], [ 52, 53 ], [ 168, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 57, 61 ], [ 61, 62 ], [ 56, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 66, 68 ], [ 64, 69 ], [ 54, 70 ], [ 70, 71 ], [ 54, 72 ], [ 72, 73 ], [ 168, 74 ], [ 74, 75 ], [ 74, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 76, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 76, 87 ], [ 87, 88 ], [ 87, 89 ], [ 89, 90 ], [ 90, 91 ], [ 89, 92 ], [ 87, 93 ], [ 94, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 96, 100 ], [ 95, 101 ], [ 101, 102 ], [ 102, 103 ], [ 102, 104 ], [ 102, 105 ], [ 102, 106 ], [ 102, 107 ], [ 102, 108 ], [ 102, 109 ], [ 102, 110 ], [ 101, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 111, 115 ], [ 115, 116 ], [ 115, 117 ], [ 101, 118 ], [ 118, 119 ], [ 119, 120 ], [ 120, 121 ], [ 120, 122 ], [ 119, 123 ], [ 123, 124 ], [ 123, 125 ], [ 118, 126 ], [ 126, 127 ], [ 127, 128 ], [ 127, 129 ], [ 76, 130 ], [ 130, 131 ], [ 131, 132 ], [ 132, 133 ], [ 132, 134 ], [ 134, 135 ], [ 134, 136 ], [ 131, 137 ], [ 137, 138 ], [ 137, 139 ], [ 130, 140 ], [ 140, 141 ], [ 141, 142 ], [ 141, 143 ], [ 76, 144 ], [ 144, 145 ], [ 145, 146 ], [ 145, 147 ], [ 144, 148 ], [ 148, 149 ], [ 149, 150 ], [ 150, 151 ], [ 149, 152 ], [ 74, 153 ], [ 153, 154 ], [ 74, 155 ], [ 155, 156 ], [ 74, 157 ], [ 157, 158 ], [ 74, 159 ], [ 159, 160 ], [ 74, 161 ], [ 161, 162 ], [ 74, 163 ], [ 163, 164 ], [ 74, 165 ], [ 165, 166 ], [ 0, 167 ], [ 167, 168 ], [ 167, 169 ] ]
[ "\nimport java.util.*;\nimport java.io.*;\nimport java.math.BigInteger;\npublic class Main {\n\n\tprivate static final int mod =(int)1e9+7;\n\tpublic static void main(String[] args) throws Exception {\n\t Scanner sc=new Scanner(System.in);\n\t PrintWriter out=new PrintWriter(System.out);\n\t int x=sc.nextInt();\n\t if(x==0) {\n\t out.println(1);\n\t }else {\n\t out.println(0);\n\t }\n\t out.flush();\n\t }\n//\t static int binarySearch(int i,int j,int a[]) {\n//\t \n//\t }\n\t\n\tstatic boolean vis[]=new boolean[10001];\n\t static int gcd(int a, int b) \n\t { \n\t if (a == 0) \n\t return b; \n\t return gcd(b % a, a); \n\t } \n\t static void dfs(int n,boolean flag,ArrayList<ArrayList<Integer>> adj,int src,boolean vis[],ArrayList<Integer> centroid,int size[]) {\n\t vis[src]=true;\n\t size[src]=1;\n\t for(int i:adj.get(src)) {\n\t if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }\n\t }\n\t if(n-size[src]>n/2) {\n\t flag=false;\n\t }\n\t if(flag==true) {\n\t centroid.add(src);\n\t }\n\t }\n\t\n\t \n\t \n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "import java.math.BigInteger;", "BigInteger", "java.math", "public class Main {\n\n\tprivate static final int mod =(int)1e9+7;\n\tpublic static void main(String[] args) throws Exception {\n\t Scanner sc=new Scanner(System.in);\n\t PrintWriter out=new PrintWriter(System.out);\n\t int x=sc.nextInt();\n\t if(x==0) {\n\t out.println(1);\n\t }else {\n\t out.println(0);\n\t }\n\t out.flush();\n\t }\n//\t static int binarySearch(int i,int j,int a[]) {\n//\t \n//\t }\n\t\n\tstatic boolean vis[]=new boolean[10001];\n\t static int gcd(int a, int b) \n\t { \n\t if (a == 0) \n\t return b; \n\t return gcd(b % a, a); \n\t } \n\t static void dfs(int n,boolean flag,ArrayList<ArrayList<Integer>> adj,int src,boolean vis[],ArrayList<Integer> centroid,int size[]) {\n\t vis[src]=true;\n\t size[src]=1;\n\t for(int i:adj.get(src)) {\n\t if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }\n\t }\n\t if(n-size[src]>n/2) {\n\t flag=false;\n\t }\n\t if(flag==true) {\n\t centroid.add(src);\n\t }\n\t }\n\t\n\t \n\t \n}", "Main", "private static final int mod =(int)1e9+7;", "mod", "(int)1e9+7", "(int)1e9", "7", "static boolean vis[]=new boolean[10001];", "vis", "new boolean[10001]", "10001", "public static void main(String[] args) throws Exception {\n\t Scanner sc=new Scanner(System.in);\n\t PrintWriter out=new PrintWriter(System.out);\n\t int x=sc.nextInt();\n\t if(x==0) {\n\t out.println(1);\n\t }else {\n\t out.println(0);\n\t }\n\t out.flush();\n\t }", "main", "{\n\t Scanner sc=new Scanner(System.in);\n\t PrintWriter out=new PrintWriter(System.out);\n\t int x=sc.nextInt();\n\t if(x==0) {\n\t out.println(1);\n\t }else {\n\t out.println(0);\n\t }\n\t out.flush();\n\t }", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "PrintWriter out=new PrintWriter(System.out);", "out", "new PrintWriter(System.out)", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "if(x==0) {\n\t out.println(1);\n\t }else {\n\t out.println(0);\n\t }", "x==0", "x", "0", "{\n\t out.println(1);\n\t }", "out.println(1)", "out.println", "out", "1", "{\n\t out.println(0);\n\t }", "out.println(0)", "out.println", "out", "0", "out.flush()", "out.flush", "out", "String[] args", "args", "static int gcd(int a, int b) \n\t { \n\t if (a == 0) \n\t return b; \n\t return gcd(b % a, a); \n\t }", "gcd", "{ \n\t if (a == 0) \n\t return b; \n\t return gcd(b % a, a); \n\t }", "if (a == 0) \n\t return b;", "a == 0", "a", "0", "return b;", "b", "return gcd(b % a, a);", "gcd(b % a, a)", "gcd", "b % a", "b", "a", "a", "int a", "a", "int b", "b", "static void dfs(int n,boolean flag,ArrayList<ArrayList<Integer>> adj,int src,boolean vis[],ArrayList<Integer> centroid,int size[]) {\n\t vis[src]=true;\n\t size[src]=1;\n\t for(int i:adj.get(src)) {\n\t if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }\n\t }\n\t if(n-size[src]>n/2) {\n\t flag=false;\n\t }\n\t if(flag==true) {\n\t centroid.add(src);\n\t }\n\t }", "dfs", "{\n\t vis[src]=true;\n\t size[src]=1;\n\t for(int i:adj.get(src)) {\n\t if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }\n\t }\n\t if(n-size[src]>n/2) {\n\t flag=false;\n\t }\n\t if(flag==true) {\n\t centroid.add(src);\n\t }\n\t }", "vis[src]=true", "vis[src]", "vis", "src", "true", "size[src]=1", "size[src]", "size", "src", "1", "for(int i:adj.get(src)) {\n\t if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }\n\t }", "int i", "adj.get(src)", "adj.get", "adj", "src", "{\n\t if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }\n\t }", "{\n\t if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }\n\t }", "if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }", "vis[i]==false", "vis[i]", "vis", "i", "false", "{\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }", "dfs(n,flag,adj,i,vis,centroid,size)", "dfs", "n", "flag", "adj", "i", "vis", "centroid", "size", "size[src]+=size[i]", "size[src]", "size", "src", "size[i]", "size", "i", "if(size[i]>n/2) {\n\t flag=false;\n\t }", "size[i]>n/2", "size[i]", "size", "i", "n/2", "n", "2", "{\n\t flag=false;\n\t }", "flag=false", "flag", "false", "if(n-size[src]>n/2) {\n\t flag=false;\n\t }", "n-size[src]>n/2", "n-size[src]", "n", "size[src]", "size", "src", "n/2", "n", "2", "{\n\t flag=false;\n\t }", "flag=false", "flag", "false", "if(flag==true) {\n\t centroid.add(src);\n\t }", "flag==true", "flag", "true", "{\n\t centroid.add(src);\n\t }", "centroid.add(src)", "centroid.add", "centroid", "src", "int n", "n", "boolean flag", "flag", "ArrayList<ArrayList<Integer>> adj", "adj", "int src", "src", "boolean vis[]", "vis", "ArrayList<Integer> centroid", "centroid", "int size[]", "size", "public class Main {\n\n\tprivate static final int mod =(int)1e9+7;\n\tpublic static void main(String[] args) throws Exception {\n\t Scanner sc=new Scanner(System.in);\n\t PrintWriter out=new PrintWriter(System.out);\n\t int x=sc.nextInt();\n\t if(x==0) {\n\t out.println(1);\n\t }else {\n\t out.println(0);\n\t }\n\t out.flush();\n\t }\n//\t static int binarySearch(int i,int j,int a[]) {\n//\t \n//\t }\n\t\n\tstatic boolean vis[]=new boolean[10001];\n\t static int gcd(int a, int b) \n\t { \n\t if (a == 0) \n\t return b; \n\t return gcd(b % a, a); \n\t } \n\t static void dfs(int n,boolean flag,ArrayList<ArrayList<Integer>> adj,int src,boolean vis[],ArrayList<Integer> centroid,int size[]) {\n\t vis[src]=true;\n\t size[src]=1;\n\t for(int i:adj.get(src)) {\n\t if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }\n\t }\n\t if(n-size[src]>n/2) {\n\t flag=false;\n\t }\n\t if(flag==true) {\n\t centroid.add(src);\n\t }\n\t }\n\t\n\t \n\t \n}", "public class Main {\n\n\tprivate static final int mod =(int)1e9+7;\n\tpublic static void main(String[] args) throws Exception {\n\t Scanner sc=new Scanner(System.in);\n\t PrintWriter out=new PrintWriter(System.out);\n\t int x=sc.nextInt();\n\t if(x==0) {\n\t out.println(1);\n\t }else {\n\t out.println(0);\n\t }\n\t out.flush();\n\t }\n//\t static int binarySearch(int i,int j,int a[]) {\n//\t \n//\t }\n\t\n\tstatic boolean vis[]=new boolean[10001];\n\t static int gcd(int a, int b) \n\t { \n\t if (a == 0) \n\t return b; \n\t return gcd(b % a, a); \n\t } \n\t static void dfs(int n,boolean flag,ArrayList<ArrayList<Integer>> adj,int src,boolean vis[],ArrayList<Integer> centroid,int size[]) {\n\t vis[src]=true;\n\t size[src]=1;\n\t for(int i:adj.get(src)) {\n\t if(vis[i]==false){\n\t dfs(n,flag,adj,i,vis,centroid,size);\n\t size[src]+=size[i];\n\t if(size[i]>n/2) {\n\t flag=false;\n\t }\n\t }\n\t }\n\t if(n-size[src]>n/2) {\n\t flag=false;\n\t }\n\t if(flag==true) {\n\t centroid.add(src);\n\t }\n\t }\n\t\n\t \n\t \n}", "Main" ]
import java.util.*; import java.io.*; import java.math.BigInteger; public class Main { private static final int mod =(int)1e9+7; public static void main(String[] args) throws Exception { Scanner sc=new Scanner(System.in); PrintWriter out=new PrintWriter(System.out); int x=sc.nextInt(); if(x==0) { out.println(1); }else { out.println(0); } out.flush(); } // static int binarySearch(int i,int j,int a[]) { // // } static boolean vis[]=new boolean[10001]; static int gcd(int a, int b) { if (a == 0) return b; return gcd(b % a, a); } static void dfs(int n,boolean flag,ArrayList<ArrayList<Integer>> adj,int src,boolean vis[],ArrayList<Integer> centroid,int size[]) { vis[src]=true; size[src]=1; for(int i:adj.get(src)) { if(vis[i]==false){ dfs(n,flag,adj,i,vis,centroid,size); size[src]+=size[i]; if(size[i]>n/2) { flag=false; } } } if(n-size[src]>n/2) { flag=false; } if(flag==true) { centroid.add(src); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 17, 13, 23, 13, 6, 13, 41, 13, 20, 41, 13, 20, 12, 13, 30, 42, 40, 4, 18, 13, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 109, 8 ], [ 109, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 21, 22 ], [ 22, 23 ], [ 22, 24 ], [ 20, 25 ], [ 25, 26 ], [ 25, 27 ], [ 9, 28 ], [ 28, 29 ], [ 109, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 32, 34 ], [ 30, 35 ], [ 35, 36 ], [ 35, 37 ], [ 30, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 41, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 46, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 40, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 30, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 65, 68 ], [ 68, 69 ], [ 30, 70 ], [ 70, 71 ], [ 70, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 77, 82 ], [ 82, 83 ], [ 82, 84 ], [ 77, 85 ], [ 85, 86 ], [ 86, 87 ], [ 77, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 89, 93 ], [ 93, 94 ], [ 72, 95 ], [ 95, 96 ], [ 70, 97 ], [ 97, 98 ], [ 30, 99 ], [ 99, 100 ], [ 99, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 103, 106 ], [ 106, 107 ], [ 0, 108 ], [ 108, 109 ], [ 108, 110 ] ]
[ "import java.util.*;\nimport java.io.*;\npublic class Main {\n\tpublic static void main(String args[]) {\n\t\tFastScanner in = new FastScanner();\n\t\tint x=in.nextInt();\n\t\tSystem.out.println(1-x);\n\t}\n\n\t///////////////////////////\n\tstatic class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] nextArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "public class Main {\n\tpublic static void main(String args[]) {\n\t\tFastScanner in = new FastScanner();\n\t\tint x=in.nextInt();\n\t\tSystem.out.println(1-x);\n\t}\n\n\t///////////////////////////\n\tstatic class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] nextArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n}", "Main", "public static void main(String args[]) {\n\t\tFastScanner in = new FastScanner();\n\t\tint x=in.nextInt();\n\t\tSystem.out.println(1-x);\n\t}", "main", "{\n\t\tFastScanner in = new FastScanner();\n\t\tint x=in.nextInt();\n\t\tSystem.out.println(1-x);\n\t}", "FastScanner in = new FastScanner();", "in", "new FastScanner()", "int x=in.nextInt();", "x", "in.nextInt()", "in.nextInt", "in", "System.out.println(1-x)", "System.out.println", "System.out", "System", "System.out", "1-x", "1", "x", "String args[]", "args", "static class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] nextArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}", "FastScanner", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "StringTokenizer st = new StringTokenizer(\"\");", "st", "new StringTokenizer(\"\")", "String next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}", "next", "{\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}", "while (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "!st.hasMoreTokens()", "st.hasMoreTokens()", "st.hasMoreTokens", "st", "try {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "IOException e", "{\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "e.printStackTrace()", "e.printStackTrace", "e", "{\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t}", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "int nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "nextInt", "{\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "int[] nextArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}", "nextArray", "{\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}", "int[] a = new int[n];", "a", "new int[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "a[i] = nextInt();", "a[i] = nextInt()", "a[i]", "a", "i", "nextInt()", "nextInt", "return a;", "a", "int n", "n", "long nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}", "nextLong", "{\n\t\t\treturn Long.parseLong(next());\n\t\t}", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "public class Main {\n\tpublic static void main(String args[]) {\n\t\tFastScanner in = new FastScanner();\n\t\tint x=in.nextInt();\n\t\tSystem.out.println(1-x);\n\t}\n\n\t///////////////////////////\n\tstatic class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] nextArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n}", "public class Main {\n\tpublic static void main(String args[]) {\n\t\tFastScanner in = new FastScanner();\n\t\tint x=in.nextInt();\n\t\tSystem.out.println(1-x);\n\t}\n\n\t///////////////////////////\n\tstatic class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] nextArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n}", "Main" ]
import java.util.*; import java.io.*; public class Main { public static void main(String args[]) { FastScanner in = new FastScanner(); int x=in.nextInt(); System.out.println(1-x); } /////////////////////////// static class FastScanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); String next() { while (!st.hasMoreTokens()) try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } int[] nextArray(int n) { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = nextInt(); return a; } long nextLong() { return Long.parseLong(next()); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 41, 5 ], [ 41, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 17, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 8, 35 ], [ 35, 36 ], [ 36, 37 ], [ 6, 38 ], [ 38, 39 ], [ 0, 40 ], [ 40, 41 ], [ 40, 42 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\n\t\tpublic static void main(String[] args) {\n\n\t\t\tScanner scan = new Scanner(System.in);\n\t\t\tint N = scan.nextInt();\n\n\n\t\t\tif(N ==0 ) {\n\t\t\t\tSystem.out.println(1);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tSystem.out.println(0);\n\t\t\t}\n\t\t\tscan.close();\n\t\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\n\t\tpublic static void main(String[] args) {\n\n\t\t\tScanner scan = new Scanner(System.in);\n\t\t\tint N = scan.nextInt();\n\n\n\t\t\tif(N ==0 ) {\n\t\t\t\tSystem.out.println(1);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tSystem.out.println(0);\n\t\t\t}\n\t\t\tscan.close();\n\t\t}\n\n}", "Main", "public static void main(String[] args) {\n\n\t\t\tScanner scan = new Scanner(System.in);\n\t\t\tint N = scan.nextInt();\n\n\n\t\t\tif(N ==0 ) {\n\t\t\t\tSystem.out.println(1);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tSystem.out.println(0);\n\t\t\t}\n\t\t\tscan.close();\n\t\t}", "main", "{\n\n\t\t\tScanner scan = new Scanner(System.in);\n\t\t\tint N = scan.nextInt();\n\n\n\t\t\tif(N ==0 ) {\n\t\t\t\tSystem.out.println(1);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tSystem.out.println(0);\n\t\t\t}\n\t\t\tscan.close();\n\t\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int N = scan.nextInt();", "N", "scan.nextInt()", "scan.nextInt", "scan", "if(N ==0 ) {\n\t\t\t\tSystem.out.println(1);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tSystem.out.println(0);\n\t\t\t}", "N ==0", "N", "0", "{\n\t\t\t\tSystem.out.println(1);\n\t\t\t}", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "{\n\t\t\t\tSystem.out.println(0);\n\t\t\t}", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "scan.close()", "scan.close", "scan", "String[] args", "args", "public class Main {\n\n\n\t\tpublic static void main(String[] args) {\n\n\t\t\tScanner scan = new Scanner(System.in);\n\t\t\tint N = scan.nextInt();\n\n\n\t\t\tif(N ==0 ) {\n\t\t\t\tSystem.out.println(1);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tSystem.out.println(0);\n\t\t\t}\n\t\t\tscan.close();\n\t\t}\n\n}", "public class Main {\n\n\n\t\tpublic static void main(String[] args) {\n\n\t\t\tScanner scan = new Scanner(System.in);\n\t\t\tint N = scan.nextInt();\n\n\n\t\t\tif(N ==0 ) {\n\t\t\t\tSystem.out.println(1);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tSystem.out.println(0);\n\t\t\t}\n\t\t\tscan.close();\n\t\t}\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); if(N ==0 ) { System.out.println(1); } else { System.out.println(0); } scan.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 18, 13, 13, 41, 13, 18, 13, 13, 41, 13, 20, 41, 13, 20, 41, 13, 20, 4, 18, 13, 17, 13, 13, 4, 18, 13, 23, 13, 6, 13, 12, 13, 30, 14, 2, 4, 18, 13, 17, 30, 4, 18, 13, 17, 30, 4, 18, 13, 17, 23, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 79, 17 ], [ 79, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 23, 25 ], [ 20, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 28, 30 ], [ 20, 31 ], [ 31, 32 ], [ 31, 33 ], [ 20, 34 ], [ 34, 35 ], [ 34, 36 ], [ 20, 37 ], [ 37, 38 ], [ 37, 39 ], [ 20, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 40, 44 ], [ 40, 45 ], [ 20, 46 ], [ 46, 47 ], [ 47, 48 ], [ 18, 49 ], [ 49, 50 ], [ 79, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 57, 61 ], [ 56, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 63, 66 ], [ 56, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 68, 71 ], [ 53, 72 ], [ 72, 73 ], [ 53, 74 ], [ 74, 75 ], [ 53, 76 ], [ 76, 77 ], [ 0, 78 ], [ 78, 79 ], [ 78, 80 ] ]
[ "import java.io.OutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.Scanner;\n\n/**\n * Built using CHelper plug-in\n * Actual solution is at the top\n *\n * @author test\n */\npublic class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc187_a solver = new abc187_a();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class abc187_a {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n if (in.nextInt() == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n }\n\n }\n}\n", "import java.io.OutputStream;", "OutputStream", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc187_a solver = new abc187_a();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class abc187_a {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n if (in.nextInt() == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n }\n\n }\n}", "Main", "public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc187_a solver = new abc187_a();\n solver.solve(1, in, out);\n out.close();\n }", "main", "{\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc187_a solver = new abc187_a();\n solver.solve(1, in, out);\n out.close();\n }", "InputStream inputStream = System.in;", "inputStream", "System.in", "System", "System.in", "OutputStream outputStream = System.out;", "outputStream", "System.out", "System", "System.out", "Scanner in = new Scanner(inputStream);", "in", "new Scanner(inputStream)", "PrintWriter out = new PrintWriter(outputStream);", "out", "new PrintWriter(outputStream)", "abc187_a solver = new abc187_a();", "solver", "new abc187_a()", "solver.solve(1, in, out)", "solver.solve", "solver", "1", "in", "out", "out.close()", "out.close", "out", "String[] args", "args", "static class abc187_a {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n if (in.nextInt() == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n }\n\n }", "abc187_a", "public void solve(int testNumber, Scanner in, PrintWriter out) {\n if (in.nextInt() == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n }", "solve", "{\n if (in.nextInt() == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n }", "if (in.nextInt() == 1) {\n out.println(0);\n } else {\n out.println(1);\n }", "in.nextInt() == 1", "in.nextInt()", "in.nextInt", "in", "1", "{\n out.println(0);\n }", "out.println(0)", "out.println", "out", "0", "{\n out.println(1);\n }", "out.println(1)", "out.println", "out", "1", "int testNumber", "testNumber", "Scanner in", "in", "PrintWriter out", "out", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc187_a solver = new abc187_a();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class abc187_a {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n if (in.nextInt() == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n }\n\n }\n}", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc187_a solver = new abc187_a();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class abc187_a {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n if (in.nextInt() == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n }\n\n }\n}", "Main" ]
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top * * @author test */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); abc187_a solver = new abc187_a(); solver.solve(1, in, out); out.close(); } static class abc187_a { public void solve(int testNumber, Scanner in, PrintWriter out) { if (in.nextInt() == 1) { out.println(0); } else { out.println(1); } } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 14, 2, 4, 18, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 38, 5 ], [ 38, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 13, 14 ], [ 14, 15 ], [ 15, 16 ], [ 13, 17 ], [ 12, 18 ], [ 18, 19 ], [ 19, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 19, 24 ], [ 12, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 26, 31 ], [ 8, 32 ], [ 32, 33 ], [ 33, 34 ], [ 6, 35 ], [ 35, 36 ], [ 0, 37 ], [ 37, 38 ], [ 37, 39 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tif (sc.nextInt() == 1) {\n\t\t\tSystem.out.println(0);\n\t\t} else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\tsc.close();\n\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tif (sc.nextInt() == 1) {\n\t\t\tSystem.out.println(0);\n\t\t} else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\tsc.close();\n\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tif (sc.nextInt() == 1) {\n\t\t\tSystem.out.println(0);\n\t\t} else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\tsc.close();\n\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tif (sc.nextInt() == 1) {\n\t\t\tSystem.out.println(0);\n\t\t} else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\tsc.close();\n\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "if (sc.nextInt() == 1) {\n\t\t\tSystem.out.println(0);\n\t\t} else {\n\t\t\tSystem.out.println(1);\n\t\t}", "sc.nextInt() == 1", "sc.nextInt()", "sc.nextInt", "sc", "1", "{\n\t\t\tSystem.out.println(0);\n\t\t}", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "{\n\t\t\tSystem.out.println(1);\n\t\t}", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "sc.close()", "sc.close", "sc", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tif (sc.nextInt() == 1) {\n\t\t\tSystem.out.println(0);\n\t\t} else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\tsc.close();\n\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tif (sc.nextInt() == 1) {\n\t\t\tSystem.out.println(0);\n\t\t} else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\tsc.close();\n\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); if (sc.nextInt() == 1) { System.out.println(0); } else { System.out.println(1); } sc.close(); } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 17, 41, 13, 17, 41, 13, 2, 4, 18, 13, 17, 17, 17, 41, 13, 20, 12, 13, 30, 41, 13, 4, 13, 14, 2, 13, 17, 30, 4, 13, 17, 30, 4, 13, 17, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 13, 11, 1, 41, 13, 17, 2, 2, 13, 13, 13, 1, 40, 13, 30, 30, 11, 1, 41, 13, 2, 13, 13, 2, 13, 13, 1, 0, 13, 13, 30, 30, 14, 2, 18, 13, 13, 13, 0, 18, 13, 13, 13, 29, 13, 23, 13, 12, 13, 30, 14, 2, 4, 18, 13, 17, 30, 4, 18, 18, 13, 13, 2, 13, 13, 30, 11, 1, 41, 13, 17, 2, 13, 4, 18, 13, 1, 40, 13, 30, 30, 4, 13, 2, 4, 18, 13, 17, 13, 4, 18, 13, 2, 13, 17, 2, 13, 4, 18, 13, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 18, 13, 13, 13, 18, 18, 13, 13, 13, 29, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 17, 28, 13, 13, 30, 30, 28, 13, 13, 30, 30, 14, 2, 17, 13, 30, 40, 13, 29, 13, 23, 13, 12, 13, 30, 4, 13, 17, 12, 13, 30, 4, 13, 17, 4, 13, 13, 4, 13, 17, 23, 13, 12, 13, 30, 41, 13, 2, 17, 13, 29, 4, 18, 13, 23, 13, 12, 13, 30, 41, 13, 17, 41, 13, 17, 41, 13, 4, 18, 13, 11, 1, 41, 13, 17, 2, 13, 2, 13, 17, 1, 40, 13, 30, 30, 14, 4, 18, 13, 4, 18, 13, 13, 2, 13, 4, 18, 13, 30, 40, 13, 29, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 4, 18, 13, 12, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 30, 29, 17, 30, 29, 2, 13, 4, 13, 2, 13, 17, 23, 13, 12, 13, 30, 29, 8, 2, 2, 13, 17, 2, 13, 17, 13, 2, 4, 13, 2, 13, 17, 4, 13, 2, 13, 17, 23, 13, 12, 13, 30, 29, 2, 2, 13, 13, 4, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 29, 2, 2, 13, 13, 4, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 29, 8, 2, 13, 17, 13, 4, 13, 13, 2, 13, 13, 23, 13, 23, 13, 12, 13, 30, 29, 8, 2, 13, 17, 13, 4, 13, 13, 2, 13, 13, 23, 13, 23, 13, 12, 13, 30, 4, 18, 18, 13, 13, 13, 23, 13, 12, 13, 30, 4, 18, 18, 13, 13, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 13, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 625, 5 ], [ 625, 6 ], [ 6, 7 ], [ 6, 8 ], [ 625, 9 ], [ 9, 10 ], [ 9, 11 ], [ 625, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 16, 17 ], [ 15, 18 ], [ 15, 19 ], [ 14, 20 ], [ 625, 21 ], [ 21, 22 ], [ 21, 23 ], [ 625, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 26, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 31, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 24, 43 ], [ 43, 44 ], [ 625, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 47, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 52, 57 ], [ 57, 58 ], [ 57, 59 ], [ 52, 60 ], [ 60, 61 ], [ 61, 62 ], [ 52, 63 ], [ 64, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 66, 68 ], [ 65, 69 ], [ 47, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 70, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 75, 79 ], [ 70, 80 ], [ 80, 81 ], [ 81, 82 ], [ 70, 83 ], [ 84, 84 ], [ 84, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 89, 90 ], [ 89, 91 ], [ 85, 92 ], [ 92, 93 ], [ 92, 94 ], [ 85, 95 ], [ 95, 96 ], [ 96, 97 ], [ 96, 98 ], [ 85, 99 ], [ 100, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 102, 106 ], [ 101, 107 ], [ 107, 108 ], [ 108, 109 ], [ 108, 110 ], [ 107, 111 ], [ 47, 112 ], [ 112, 113 ], [ 45, 114 ], [ 114, 115 ], [ 625, 116 ], [ 116, 117 ], [ 116, 118 ], [ 118, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 122, 123 ], [ 120, 124 ], [ 119, 125 ], [ 125, 126 ], [ 126, 127 ], [ 127, 128 ], [ 128, 129 ], [ 128, 130 ], [ 126, 131 ], [ 131, 132 ], [ 131, 133 ], [ 119, 134 ], [ 134, 135 ], [ 135, 136 ], [ 136, 137 ], [ 137, 138 ], [ 137, 139 ], [ 135, 140 ], [ 140, 141 ], [ 140, 142 ], [ 142, 143 ], [ 143, 144 ], [ 135, 145 ], [ 145, 146 ], [ 146, 147 ], [ 135, 148 ], [ 149, 149 ], [ 149, 150 ], [ 150, 151 ], [ 150, 152 ], [ 152, 153 ], [ 153, 154 ], [ 154, 155 ], [ 153, 156 ], [ 153, 157 ], [ 152, 158 ], [ 158, 159 ], [ 159, 160 ], [ 158, 161 ], [ 161, 162 ], [ 161, 163 ], [ 150, 164 ], [ 164, 165 ], [ 164, 166 ], [ 166, 167 ], [ 167, 168 ], [ 166, 169 ], [ 116, 170 ], [ 170, 171 ], [ 116, 172 ], [ 172, 173 ], [ 625, 174 ], [ 174, 175 ], [ 174, 176 ], [ 176, 177 ], [ 177, 178 ], [ 177, 179 ], [ 176, 182 ], [ 182, 183 ], [ 183, 184 ], [ 184, 185 ], [ 184, 186 ], [ 182, 187 ], [ 187, 188 ], [ 187, 189 ], [ 182, 190 ], [ 190, 191 ], [ 191, 192 ], [ 182, 193 ], [ 194, 194 ], [ 194, 195 ], [ 195, 196 ], [ 196, 197 ], [ 197, 198 ], [ 197, 199 ], [ 195, 200 ], [ 200, 201 ], [ 200, 202 ], [ 195, 203 ], [ 203, 204 ], [ 204, 205 ], [ 195, 206 ], [ 207, 207 ], [ 207, 208 ], [ 208, 209 ], [ 209, 210 ], [ 210, 211 ], [ 210, 212 ], [ 209, 213 ], [ 208, 214 ], [ 214, 215 ], [ 215, 216 ], [ 215, 217 ], [ 214, 218 ], [ 176, 219 ], [ 219, 220 ], [ 174, 221 ], [ 221, 222 ], [ 174, 223 ], [ 223, 224 ], [ 174, 225 ], [ 225, 226 ], [ 625, 227 ], [ 227, 228 ], [ 227, 229 ], [ 229, 230 ], [ 230, 231 ], [ 230, 232 ], [ 229, 233 ], [ 233, 234 ], [ 233, 235 ], [ 233, 236 ], [ 237, 237 ], [ 237, 238 ], [ 238, 239 ], [ 238, 240 ], [ 238, 241 ], [ 242, 242 ], [ 242, 243 ], [ 243, 244 ], [ 244, 245 ], [ 244, 246 ], [ 243, 247 ], [ 247, 248 ], [ 248, 249 ], [ 229, 250 ], [ 250, 251 ], [ 227, 252 ], [ 252, 253 ], [ 625, 254 ], [ 254, 255 ], [ 254, 256 ], [ 256, 257 ], [ 257, 258 ], [ 257, 259 ], [ 625, 260 ], [ 260, 261 ], [ 260, 262 ], [ 262, 263 ], [ 263, 264 ], [ 263, 265 ], [ 262, 266 ], [ 266, 267 ], [ 266, 268 ], [ 262, 269 ], [ 269, 270 ], [ 269, 271 ], [ 260, 272 ], [ 272, 273 ], [ 625, 274 ], [ 274, 275 ], [ 274, 276 ], [ 276, 277 ], [ 277, 278 ], [ 277, 279 ], [ 279, 280 ], [ 279, 281 ], [ 276, 282 ], [ 282, 283 ], [ 283, 284 ], [ 284, 285 ], [ 274, 286 ], [ 286, 287 ], [ 625, 288 ], [ 288, 289 ], [ 288, 290 ], [ 290, 291 ], [ 291, 292 ], [ 291, 293 ], [ 290, 294 ], [ 294, 295 ], [ 294, 296 ], [ 290, 297 ], [ 297, 298 ], [ 297, 299 ], [ 299, 300 ], [ 300, 301 ], [ 290, 302 ], [ 302, 303 ], [ 303, 304 ], [ 304, 305 ], [ 304, 306 ], [ 302, 307 ], [ 307, 308 ], [ 307, 309 ], [ 309, 310 ], [ 309, 311 ], [ 302, 312 ], [ 312, 313 ], [ 313, 314 ], [ 302, 315 ], [ 316, 316 ], [ 316, 317 ], [ 317, 318 ], [ 318, 319 ], [ 319, 320 ], [ 318, 321 ], [ 321, 322 ], [ 322, 323 ], [ 321, 324 ], [ 321, 325 ], [ 325, 326 ], [ 325, 327 ], [ 327, 328 ], [ 328, 329 ], [ 317, 330 ], [ 330, 331 ], [ 331, 332 ], [ 290, 333 ], [ 333, 334 ], [ 288, 335 ], [ 335, 336 ], [ 625, 337 ], [ 337, 338 ], [ 337, 339 ], [ 339, 340 ], [ 340, 341 ], [ 341, 342 ], [ 342, 343 ], [ 625, 344 ], [ 344, 345 ], [ 344, 346 ], [ 346, 347 ], [ 347, 348 ], [ 348, 349 ], [ 349, 350 ], [ 625, 351 ], [ 351, 352 ], [ 351, 353 ], [ 353, 354 ], [ 354, 355 ], [ 355, 356 ], [ 356, 357 ], [ 625, 358 ], [ 358, 359 ], [ 358, 360 ], [ 360, 361 ], [ 361, 362 ], [ 362, 363 ], [ 363, 364 ], [ 625, 365 ], [ 365, 366 ], [ 365, 367 ], [ 367, 368 ], [ 368, 369 ], [ 369, 370 ], [ 370, 371 ], [ 371, 372 ], [ 372, 373 ], [ 625, 374 ], [ 374, 375 ], [ 374, 376 ], [ 376, 377 ], [ 377, 378 ], [ 378, 379 ], [ 379, 380 ], [ 379, 381 ], [ 378, 382 ], [ 382, 383 ], [ 382, 384 ], [ 377, 385 ], [ 385, 386 ], [ 386, 387 ], [ 377, 388 ], [ 388, 389 ], [ 389, 390 ], [ 390, 391 ], [ 390, 392 ], [ 392, 393 ], [ 392, 394 ], [ 394, 395 ], [ 394, 396 ], [ 374, 397 ], [ 397, 398 ], [ 625, 399 ], [ 399, 400 ], [ 399, 401 ], [ 401, 402 ], [ 402, 403 ], [ 403, 404 ], [ 404, 405 ], [ 405, 406 ], [ 405, 407 ], [ 404, 408 ], [ 408, 409 ], [ 408, 410 ], [ 403, 411 ], [ 403, 412 ], [ 412, 413 ], [ 413, 414 ], [ 413, 415 ], [ 415, 416 ], [ 415, 417 ], [ 412, 418 ], [ 418, 419 ], [ 418, 420 ], [ 420, 421 ], [ 420, 422 ], [ 399, 423 ], [ 423, 424 ], [ 625, 425 ], [ 425, 426 ], [ 425, 427 ], [ 427, 428 ], [ 428, 429 ], [ 429, 430 ], [ 430, 431 ], [ 430, 432 ], [ 429, 433 ], [ 433, 434 ], [ 433, 435 ], [ 433, 436 ], [ 425, 437 ], [ 437, 438 ], [ 425, 439 ], [ 439, 440 ], [ 625, 441 ], [ 441, 442 ], [ 441, 443 ], [ 443, 444 ], [ 444, 445 ], [ 445, 446 ], [ 446, 447 ], [ 446, 448 ], [ 445, 449 ], [ 449, 450 ], [ 449, 451 ], [ 449, 452 ], [ 441, 453 ], [ 453, 454 ], [ 441, 455 ], [ 455, 456 ], [ 625, 457 ], [ 457, 458 ], [ 457, 459 ], [ 459, 460 ], [ 460, 461 ], [ 461, 462 ], [ 462, 463 ], [ 462, 464 ], [ 461, 465 ], [ 461, 466 ], [ 466, 467 ], [ 466, 468 ], [ 466, 469 ], [ 469, 470 ], [ 469, 471 ], [ 457, 472 ], [ 472, 473 ], [ 457, 474 ], [ 474, 475 ], [ 625, 476 ], [ 476, 477 ], [ 476, 478 ], [ 478, 479 ], [ 479, 480 ], [ 480, 481 ], [ 481, 482 ], [ 481, 483 ], [ 480, 484 ], [ 480, 485 ], [ 485, 486 ], [ 485, 487 ], [ 485, 488 ], [ 488, 489 ], [ 488, 490 ], [ 476, 491 ], [ 491, 492 ], [ 476, 493 ], [ 493, 494 ], [ 625, 495 ], [ 495, 496 ], [ 495, 497 ], [ 497, 498 ], [ 498, 499 ], [ 499, 500 ], [ 500, 501 ], [ 500, 502 ], [ 498, 503 ], [ 495, 504 ], [ 504, 505 ], [ 625, 506 ], [ 506, 507 ], [ 506, 508 ], [ 508, 509 ], [ 509, 510 ], [ 510, 511 ], [ 511, 512 ], [ 511, 513 ], [ 509, 514 ], [ 506, 515 ], [ 515, 516 ], [ 625, 517 ], [ 517, 518 ], [ 517, 519 ], [ 519, 520 ], [ 520, 521 ], [ 521, 522 ], [ 522, 523 ], [ 521, 524 ], [ 521, 525 ], [ 517, 526 ], [ 526, 527 ], [ 517, 528 ], [ 528, 529 ], [ 625, 530 ], [ 530, 531 ], [ 530, 532 ], [ 532, 533 ], [ 533, 534 ], [ 534, 535 ], [ 535, 536 ], [ 534, 537 ], [ 534, 538 ], [ 530, 539 ], [ 539, 540 ], [ 530, 541 ], [ 541, 542 ], [ 625, 543 ], [ 543, 544 ], [ 543, 545 ], [ 545, 546 ], [ 546, 547 ], [ 547, 548 ], [ 548, 549 ], [ 547, 550 ], [ 547, 551 ], [ 543, 552 ], [ 552, 553 ], [ 543, 554 ], [ 554, 555 ], [ 625, 556 ], [ 556, 557 ], [ 556, 558 ], [ 558, 559 ], [ 559, 560 ], [ 560, 561 ], [ 561, 562 ], [ 560, 563 ], [ 560, 564 ], [ 556, 565 ], [ 565, 566 ], [ 556, 567 ], [ 567, 568 ], [ 0, 569 ], [ 569, 570 ], [ 569, 571 ], [ 571, 572 ], [ 569, 573 ], [ 573, 574 ], [ 569, 575 ], [ 575, 576 ], [ 569, 577 ], [ 577, 578 ], [ 577, 579 ], [ 579, 580 ], [ 580, 581 ], [ 581, 582 ], [ 581, 583 ], [ 580, 584 ], [ 579, 585 ], [ 585, 586 ], [ 586, 587 ], [ 586, 588 ], [ 585, 589 ], [ 579, 590 ], [ 590, 591 ], [ 591, 592 ], [ 591, 593 ], [ 590, 594 ], [ 577, 595 ], [ 595, 596 ], [ 577, 597 ], [ 597, 598 ], [ 577, 599 ], [ 599, 600 ], [ 0, 601 ], [ 601, 602 ], [ 601, 603 ], [ 603, 604 ], [ 601, 605 ], [ 605, 606 ], [ 601, 607 ], [ 607, 608 ], [ 607, 609 ], [ 609, 610 ], [ 610, 611 ], [ 611, 612 ], [ 611, 613 ], [ 610, 614 ], [ 609, 615 ], [ 615, 616 ], [ 616, 617 ], [ 616, 618 ], [ 615, 619 ], [ 607, 620 ], [ 620, 621 ], [ 607, 622 ], [ 622, 623 ], [ 0, 624 ], [ 624, 625 ], [ 624, 626 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static String Y = \"Yes\";\n\tpublic static String N = \"No\";\n\tpublic static long MOD = (long) (Math.pow(10, 9) + 7);\n\tpublic static Scanner sc = new Scanner(System.in);\n\n\tpublic static void main(String[] args) {\n\n\t\tint n = ni();\n\t\tif (n == 0) {\n\t\t\tout(1);\n\t\t} else {\n\t\t\tout(0);\n\t\t}\n\n\t}\n\n\t/*\n\t * 以下メソッド集\n\t */\n\n\tpublic static int[] kousokusoinnsuubunkaihairetsu(int a) {\n\t\tint[] d = new int[a];\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\td[i] = i;\n\t\t}\n\t\tfor (int i = 2; i * i < a; i++) {\n\t\t\tfor (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}\n\n\t\t}\n\n\t\treturn d;\n\t}\n\n\tpublic static void permutation(String q, String ans) {\n\t\t// Base Case\n\t\tif (q.length() <= 1) {\n\t\t\tSystem.out.println(ans + q);\n\t\t}\n\t\t// General Case\n\t\telse {\n\t\t\tfor (int i = 0; i < q.length(); i++) {\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}\n\t\t}\n\t}\n\n\tstatic char[][] same(char[][] c, int h, int w) {\n\n\t\tchar[][] a = new char[h][w];\n\t\tfor (int i = 0; i < h; i++) {\n\t\t\tfor (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}\n\t\t}\n\t\treturn a;\n\n\t}\n\n\tstatic int countkuro(char[][] c) {\n\n\t\tint count = 0;\n\t\tfor (char[] cc : c) {\n\t\t\tfor (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}\n\n\tstatic void debug() {\n\n\t\tout(\"---\");\n\t}\n\n\tstatic void debug(Object a) {\n\n\t\tout(\"-------\");\n\t\tout(a);\n\t\tout(\"-------\");\n\t}\n\n\tstatic int ketasuu(int n) {\n\n\t\tString str = \"\" + n;\n\t\treturn str.length();\n\t}\n\n\tstatic int account(String str) {\n\n\t\tString target = \"AC\";\n\t\tint count = 0;\n\t\tint len = str.length();\n\t\tfor (int i = 0; i < len - 1; i++) {\n\t\t\tif (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}\n\n\tstatic int ni() {\n\n\t\treturn sc.nextInt();\n\t}\n\n\tstatic long nl() {\n\n\t\treturn sc.nextLong();\n\t}\n\n\tstatic double nd() {\n\n\t\treturn sc.nextDouble();\n\t}\n\n\tstatic String n() {\n\n\t\treturn sc.next();\n\t}\n\n\tstatic char[] nc() {\n\n\t\treturn sc.next().toCharArray();\n\t}\n\n\tstatic int kaijo(int n) {\n\n\t\tif (n == 0 || n == 1) {\n\t\t\treturn 1;\n\t\t} else {\n\t\t\treturn n * kaijo(n - 1);\n\t\t}\n\t}\n\n\tstatic int fib(int n) {\n\n\t\treturn (n == 1 || n == 0) ? n : fib(n - 2) + fib(n - 1);\n\t}\n\n\tstatic long lcm(long m, long n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}\n\n\tstatic int lcm(int m, int n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}\n\n\tstatic long gcd(long a, long b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}\n\n\tstatic int gcd(int a, int b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}\n\n\tstatic void out(Object obj) {\n\t\tSystem.out.println(obj);\n\t}\n\n\tstatic void outn(Object obj) {\n\t\tSystem.out.print(obj);\n\t}\n\n\tstatic double max(double d, double e) {\n\n\t\treturn Math.max(d, e);\n\t}\n\n\tstatic long max(long a, long b) {\n\n\t\treturn Math.max(a, b);\n\t}\n\n\tstatic long min(long d, long e) {\n\n\t\treturn Math.min(d, e);\n\t}\n\n\tstatic int min(int a, int b) {\n\n\t\treturn Math.min(a, b);\n\t}\n}\n\nclass XY {\n\n\tint h;\n\tint w;\n\tint d;\n\n\tXY(int h, int w, int d) {\n\t\tthis.h = h;\n\t\tthis.w = w;\n\t\tthis.d = d;\n\t}\n}\n\nclass NE {\n\n\tint n;\n\tint e;\n\n\tNE(int n, int e) {\n\t\tthis.n = n;\n\t\tthis.e = e;\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static String Y = \"Yes\";\n\tpublic static String N = \"No\";\n\tpublic static long MOD = (long) (Math.pow(10, 9) + 7);\n\tpublic static Scanner sc = new Scanner(System.in);\n\n\tpublic static void main(String[] args) {\n\n\t\tint n = ni();\n\t\tif (n == 0) {\n\t\t\tout(1);\n\t\t} else {\n\t\t\tout(0);\n\t\t}\n\n\t}\n\n\t/*\n\t * 以下メソッド集\n\t */\n\n\tpublic static int[] kousokusoinnsuubunkaihairetsu(int a) {\n\t\tint[] d = new int[a];\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\td[i] = i;\n\t\t}\n\t\tfor (int i = 2; i * i < a; i++) {\n\t\t\tfor (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}\n\n\t\t}\n\n\t\treturn d;\n\t}\n\n\tpublic static void permutation(String q, String ans) {\n\t\t// Base Case\n\t\tif (q.length() <= 1) {\n\t\t\tSystem.out.println(ans + q);\n\t\t}\n\t\t// General Case\n\t\telse {\n\t\t\tfor (int i = 0; i < q.length(); i++) {\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}\n\t\t}\n\t}\n\n\tstatic char[][] same(char[][] c, int h, int w) {\n\n\t\tchar[][] a = new char[h][w];\n\t\tfor (int i = 0; i < h; i++) {\n\t\t\tfor (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}\n\t\t}\n\t\treturn a;\n\n\t}\n\n\tstatic int countkuro(char[][] c) {\n\n\t\tint count = 0;\n\t\tfor (char[] cc : c) {\n\t\t\tfor (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}\n\n\tstatic void debug() {\n\n\t\tout(\"---\");\n\t}\n\n\tstatic void debug(Object a) {\n\n\t\tout(\"-------\");\n\t\tout(a);\n\t\tout(\"-------\");\n\t}\n\n\tstatic int ketasuu(int n) {\n\n\t\tString str = \"\" + n;\n\t\treturn str.length();\n\t}\n\n\tstatic int account(String str) {\n\n\t\tString target = \"AC\";\n\t\tint count = 0;\n\t\tint len = str.length();\n\t\tfor (int i = 0; i < len - 1; i++) {\n\t\t\tif (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}\n\n\tstatic int ni() {\n\n\t\treturn sc.nextInt();\n\t}\n\n\tstatic long nl() {\n\n\t\treturn sc.nextLong();\n\t}\n\n\tstatic double nd() {\n\n\t\treturn sc.nextDouble();\n\t}\n\n\tstatic String n() {\n\n\t\treturn sc.next();\n\t}\n\n\tstatic char[] nc() {\n\n\t\treturn sc.next().toCharArray();\n\t}\n\n\tstatic int kaijo(int n) {\n\n\t\tif (n == 0 || n == 1) {\n\t\t\treturn 1;\n\t\t} else {\n\t\t\treturn n * kaijo(n - 1);\n\t\t}\n\t}\n\n\tstatic int fib(int n) {\n\n\t\treturn (n == 1 || n == 0) ? n : fib(n - 2) + fib(n - 1);\n\t}\n\n\tstatic long lcm(long m, long n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}\n\n\tstatic int lcm(int m, int n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}\n\n\tstatic long gcd(long a, long b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}\n\n\tstatic int gcd(int a, int b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}\n\n\tstatic void out(Object obj) {\n\t\tSystem.out.println(obj);\n\t}\n\n\tstatic void outn(Object obj) {\n\t\tSystem.out.print(obj);\n\t}\n\n\tstatic double max(double d, double e) {\n\n\t\treturn Math.max(d, e);\n\t}\n\n\tstatic long max(long a, long b) {\n\n\t\treturn Math.max(a, b);\n\t}\n\n\tstatic long min(long d, long e) {\n\n\t\treturn Math.min(d, e);\n\t}\n\n\tstatic int min(int a, int b) {\n\n\t\treturn Math.min(a, b);\n\t}\n}", "Main", "public static String Y = \"Yes\";", "Y", "\"Yes\"", "public static String N = \"No\";", "N", "\"No\"", "public static long MOD = (long) (Math.pow(10, 9) + 7);", "MOD", "(long) (Math.pow(10, 9) + 7)", "Math.pow(10, 9)", "Math.pow", "Math", "10", "9", "7", "public static Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "public static void main(String[] args) {\n\n\t\tint n = ni();\n\t\tif (n == 0) {\n\t\t\tout(1);\n\t\t} else {\n\t\t\tout(0);\n\t\t}\n\n\t}", "main", "{\n\n\t\tint n = ni();\n\t\tif (n == 0) {\n\t\t\tout(1);\n\t\t} else {\n\t\t\tout(0);\n\t\t}\n\n\t}", "int n = ni();", "n", "ni()", "ni", "if (n == 0) {\n\t\t\tout(1);\n\t\t} else {\n\t\t\tout(0);\n\t\t}", "n == 0", "n", "0", "{\n\t\t\tout(1);\n\t\t}", "out(1)", "out", "1", "{\n\t\t\tout(0);\n\t\t}", "out(0)", "out", "0", "String[] args", "args", "public static int[] kousokusoinnsuubunkaihairetsu(int a) {\n\t\tint[] d = new int[a];\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\td[i] = i;\n\t\t}\n\t\tfor (int i = 2; i * i < a; i++) {\n\t\t\tfor (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}\n\n\t\t}\n\n\t\treturn d;\n\t}", "kousokusoinnsuubunkaihairetsu", "{\n\t\tint[] d = new int[a];\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\td[i] = i;\n\t\t}\n\t\tfor (int i = 2; i * i < a; i++) {\n\t\t\tfor (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}\n\n\t\t}\n\n\t\treturn d;\n\t}", "int[] d = new int[a];", "d", "new int[a]", "a", "for (int i = 0; i < a; i++) {\n\t\t\td[i] = i;\n\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < a", "i", "a", "i++", "i++", "i", "{\n\t\t\td[i] = i;\n\t\t}", "{\n\t\t\td[i] = i;\n\t\t}", "d[i] = i", "d[i]", "d", "i", "i", "for (int i = 2; i * i < a; i++) {\n\t\t\tfor (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}\n\n\t\t}", "int i = 2;", "int i = 2;", "i", "2", "i * i < a", "i * i", "i", "i", "a", "i++", "i++", "i", "{\n\t\t\tfor (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}\n\n\t\t}", "{\n\t\t\tfor (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}\n\n\t\t}", "for (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}", "int j = i * i;", "int j = i * i;", "j", "i * i", "i", "i", "j < a", "j", "a", "j += i", "j += i", "j", "i", "{\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}", "{\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}", "if (d[j] == j)\n\t\t\t\t\td[j] = i;", "d[j] == j", "d[j]", "d", "j", "j", "d[j] = i", "d[j]", "d", "j", "i", "return d;", "d", "int a", "a", "public static void permutation(String q, String ans) {\n\t\t// Base Case\n\t\tif (q.length() <= 1) {\n\t\t\tSystem.out.println(ans + q);\n\t\t}\n\t\t// General Case\n\t\telse {\n\t\t\tfor (int i = 0; i < q.length(); i++) {\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}\n\t\t}\n\t}", "permutation", "{\n\t\t// Base Case\n\t\tif (q.length() <= 1) {\n\t\t\tSystem.out.println(ans + q);\n\t\t}\n\t\t// General Case\n\t\telse {\n\t\t\tfor (int i = 0; i < q.length(); i++) {\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}\n\t\t}\n\t}", "if (q.length() <= 1) {\n\t\t\tSystem.out.println(ans + q);\n\t\t}\n\t\t// General Case\n\t\telse {\n\t\t\tfor (int i = 0; i < q.length(); i++) {\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}\n\t\t}", "q.length() <= 1", "q.length()", "q.length", "q", "1", "{\n\t\t\tSystem.out.println(ans + q);\n\t\t}", "System.out.println(ans + q)", "System.out.println", "System.out", "System", "System.out", "ans + q", "ans", "q", "{\n\t\t\tfor (int i = 0; i < q.length(); i++) {\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}\n\t\t}", "for (int i = 0; i < q.length(); i++) {\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < q.length()", "i", "q.length()", "q.length", "q", "i++", "i++", "i", "{\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}", "{\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}", "permutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i))", "permutation", "q.substring(0, i) + q.substring(i + 1)", "q.substring(0, i)", "q.substring", "q", "0", "i", "q.substring(i + 1)", "q.substring", "q", "i + 1", "i", "1", "ans + q.charAt(i)", "ans", "q.charAt(i)", "q.charAt", "q", "i", "String q", "q", "String ans", "ans", "static char[][] same(char[][] c, int h, int w) {\n\n\t\tchar[][] a = new char[h][w];\n\t\tfor (int i = 0; i < h; i++) {\n\t\t\tfor (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}\n\t\t}\n\t\treturn a;\n\n\t}", "same", "{\n\n\t\tchar[][] a = new char[h][w];\n\t\tfor (int i = 0; i < h; i++) {\n\t\t\tfor (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}\n\t\t}\n\t\treturn a;\n\n\t}", "char[][] a = new char[h][w];", "a", "new char[h][w]", "h", "w", "for (int i = 0; i < h; i++) {\n\t\t\tfor (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}\n\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < h", "i", "h", "i++", "i++", "i", "{\n\t\t\tfor (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}\n\t\t}", "{\n\t\t\tfor (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}\n\t\t}", "for (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}", "int j = 0;", "int j = 0;", "j", "0", "j < w", "j", "w", "j++", "j++", "j", "{\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}", "{\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}", "a[i][j] = c[i][j]", "a[i][j]", "a[i]", "a", "i", "j", "c[i][j]", "c[i]", "c", "i", "j", "return a;", "a", "char[][] c", "c", "int h", "h", "int w", "w", "static int countkuro(char[][] c) {\n\n\t\tint count = 0;\n\t\tfor (char[] cc : c) {\n\t\t\tfor (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}", "countkuro", "{\n\n\t\tint count = 0;\n\t\tfor (char[] cc : c) {\n\t\t\tfor (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}", "int count = 0;", "count", "0", "for (char[] cc : c) {\n\t\t\tfor (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t}", "char[] cc", "c", "{\n\t\t\tfor (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t}", "{\n\t\t\tfor (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t}", "for (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}", "char ccc", "cc", "{\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}", "{\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}", "if ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}", "'#' == ccc", "'#'", "ccc", "{\n\t\t\t\t\tcount++;\n\t\t\t\t}", "count++", "count", "return count;", "count", "char[][] c", "c", "static void debug() {\n\n\t\tout(\"---\");\n\t}", "debug", "{\n\n\t\tout(\"---\");\n\t}", "out(\"---\")", "out", "\"---\"", "static void debug(Object a) {\n\n\t\tout(\"-------\");\n\t\tout(a);\n\t\tout(\"-------\");\n\t}", "debug", "{\n\n\t\tout(\"-------\");\n\t\tout(a);\n\t\tout(\"-------\");\n\t}", "out(\"-------\")", "out", "\"-------\"", "out(a)", "out", "a", "out(\"-------\")", "out", "\"-------\"", "Object a", "a", "static int ketasuu(int n) {\n\n\t\tString str = \"\" + n;\n\t\treturn str.length();\n\t}", "ketasuu", "{\n\n\t\tString str = \"\" + n;\n\t\treturn str.length();\n\t}", "String str = \"\" + n;", "str", "\"\" + n", "\"\"", "n", "return str.length();", "str.length()", "str.length", "str", "int n", "n", "static int account(String str) {\n\n\t\tString target = \"AC\";\n\t\tint count = 0;\n\t\tint len = str.length();\n\t\tfor (int i = 0; i < len - 1; i++) {\n\t\t\tif (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}", "account", "{\n\n\t\tString target = \"AC\";\n\t\tint count = 0;\n\t\tint len = str.length();\n\t\tfor (int i = 0; i < len - 1; i++) {\n\t\t\tif (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}", "String target = \"AC\";", "target", "\"AC\"", "int count = 0;", "count", "0", "int len = str.length();", "len", "str.length()", "str.length", "str", "for (int i = 0; i < len - 1; i++) {\n\t\t\tif (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}\n\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < len - 1", "i", "len - 1", "len", "1", "i++", "i++", "i", "{\n\t\t\tif (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}\n\t\t}", "{\n\t\t\tif (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}\n\t\t}", "if (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}", "target.equals(str.substring(i, i + target.length()))", "target.equals", "target", "str.substring(i, i + target.length())", "str.substring", "str", "i", "i + target.length()", "i", "target.length()", "target.length", "target", "{\n\t\t\t\tcount++;\n\t\t\t}", "count++", "count", "return count;", "count", "String str", "str", "static int ni() {\n\n\t\treturn sc.nextInt();\n\t}", "ni", "{\n\n\t\treturn sc.nextInt();\n\t}", "return sc.nextInt();", "sc.nextInt()", "sc.nextInt", "sc", "static long nl() {\n\n\t\treturn sc.nextLong();\n\t}", "nl", "{\n\n\t\treturn sc.nextLong();\n\t}", "return sc.nextLong();", "sc.nextLong()", "sc.nextLong", "sc", "static double nd() {\n\n\t\treturn sc.nextDouble();\n\t}", "nd", "{\n\n\t\treturn sc.nextDouble();\n\t}", "return sc.nextDouble();", "sc.nextDouble()", "sc.nextDouble", "sc", "static String n() {\n\n\t\treturn sc.next();\n\t}", "n", "{\n\n\t\treturn sc.next();\n\t}", "return sc.next();", "sc.next()", "sc.next", "sc", "static char[] nc() {\n\n\t\treturn sc.next().toCharArray();\n\t}", "nc", "{\n\n\t\treturn sc.next().toCharArray();\n\t}", "return sc.next().toCharArray();", "sc.next().toCharArray()", "sc.next().toCharArray", "sc.next()", "sc.next", "sc", "static int kaijo(int n) {\n\n\t\tif (n == 0 || n == 1) {\n\t\t\treturn 1;\n\t\t} else {\n\t\t\treturn n * kaijo(n - 1);\n\t\t}\n\t}", "kaijo", "{\n\n\t\tif (n == 0 || n == 1) {\n\t\t\treturn 1;\n\t\t} else {\n\t\t\treturn n * kaijo(n - 1);\n\t\t}\n\t}", "if (n == 0 || n == 1) {\n\t\t\treturn 1;\n\t\t} else {\n\t\t\treturn n * kaijo(n - 1);\n\t\t}", "n == 0 || n == 1", "n == 0", "n", "0", "n == 1", "n", "1", "{\n\t\t\treturn 1;\n\t\t}", "return 1;", "1", "{\n\t\t\treturn n * kaijo(n - 1);\n\t\t}", "return n * kaijo(n - 1);", "n * kaijo(n - 1)", "n", "kaijo(n - 1)", "kaijo", "n - 1", "n", "1", "int n", "n", "static int fib(int n) {\n\n\t\treturn (n == 1 || n == 0) ? n : fib(n - 2) + fib(n - 1);\n\t}", "fib", "{\n\n\t\treturn (n == 1 || n == 0) ? n : fib(n - 2) + fib(n - 1);\n\t}", "return (n == 1 || n == 0) ? n : fib(n - 2) + fib(n - 1);", "(n == 1 || n == 0) ? n : fib(n - 2) + fib(n - 1)", "(n == 1 || n == 0)", "n == 1", "n", "1", "n == 0", "n", "0", "n", "fib(n - 2) + fib(n - 1)", "fib(n - 2)", "fib", "n - 2", "n", "2", "fib(n - 1)", "fib", "n - 1", "n", "1", "int n", "n", "static long lcm(long m, long n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}", "lcm", "{\n\n\t\treturn m * n / gcd(m, n);\n\t}", "return m * n / gcd(m, n);", "m * n / gcd(m, n)", "m * n", "m", "n", "gcd(m, n)", "gcd", "m", "n", "long m", "m", "long n", "n", "static int lcm(int m, int n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}", "lcm", "{\n\n\t\treturn m * n / gcd(m, n);\n\t}", "return m * n / gcd(m, n);", "m * n / gcd(m, n)", "m * n", "m", "n", "gcd(m, n)", "gcd", "m", "n", "int m", "m", "int n", "n", "static long gcd(long a, long b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}", "gcd", "{\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}", "return (b == 0) ? a : gcd(b, a % b);", "(b == 0) ? a : gcd(b, a % b)", "(b == 0)", "b", "0", "a", "gcd(b, a % b)", "gcd", "b", "a % b", "a", "b", "long a", "a", "long b", "b", "static int gcd(int a, int b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}", "gcd", "{\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}", "return (b == 0) ? a : gcd(b, a % b);", "(b == 0) ? a : gcd(b, a % b)", "(b == 0)", "b", "0", "a", "gcd(b, a % b)", "gcd", "b", "a % b", "a", "b", "int a", "a", "int b", "b", "static void out(Object obj) {\n\t\tSystem.out.println(obj);\n\t}", "out", "{\n\t\tSystem.out.println(obj);\n\t}", "System.out.println(obj)", "System.out.println", "System.out", "System", "System.out", "obj", "Object obj", "obj", "static void outn(Object obj) {\n\t\tSystem.out.print(obj);\n\t}", "outn", "{\n\t\tSystem.out.print(obj);\n\t}", "System.out.print(obj)", "System.out.print", "System.out", "System", "System.out", "obj", "Object obj", "obj", "static double max(double d, double e) {\n\n\t\treturn Math.max(d, e);\n\t}", "max", "{\n\n\t\treturn Math.max(d, e);\n\t}", "return Math.max(d, e);", "Math.max(d, e)", "Math.max", "Math", "d", "e", "double d", "d", "double e", "e", "static long max(long a, long b) {\n\n\t\treturn Math.max(a, b);\n\t}", "max", "{\n\n\t\treturn Math.max(a, b);\n\t}", "return Math.max(a, b);", "Math.max(a, b)", "Math.max", "Math", "a", "b", "long a", "a", "long b", "b", "static long min(long d, long e) {\n\n\t\treturn Math.min(d, e);\n\t}", "min", "{\n\n\t\treturn Math.min(d, e);\n\t}", "return Math.min(d, e);", "Math.min(d, e)", "Math.min", "Math", "d", "e", "long d", "d", "long e", "e", "static int min(int a, int b) {\n\n\t\treturn Math.min(a, b);\n\t}", "min", "{\n\n\t\treturn Math.min(a, b);\n\t}", "return Math.min(a, b);", "Math.min(a, b)", "Math.min", "Math", "a", "b", "int a", "a", "int b", "b", "class XY {\n\n\tint h;\n\tint w;\n\tint d;\n\n\tXY(int h, int w, int d) {\n\t\tthis.h = h;\n\t\tthis.w = w;\n\t\tthis.d = d;\n\t}\n}", "XY", "int h;", "h", "int w;", "w", "int d;", "d", "XY(int h, int w, int d) {\n\t\tthis.h = h;\n\t\tthis.w = w;\n\t\tthis.d = d;\n\t}", "XY", "{\n\t\tthis.h = h;\n\t\tthis.w = w;\n\t\tthis.d = d;\n\t}", "this.h = h", "this.h", "this", "this.h", "h", "this.w = w", "this.w", "this", "this.w", "w", "this.d = d", "this.d", "this", "this.d", "d", "int h", "h", "int w", "w", "int d", "d", "class NE {\n\n\tint n;\n\tint e;\n\n\tNE(int n, int e) {\n\t\tthis.n = n;\n\t\tthis.e = e;\n\t}\n}", "NE", "int n;", "n", "int e;", "e", "NE(int n, int e) {\n\t\tthis.n = n;\n\t\tthis.e = e;\n\t}", "NE", "{\n\t\tthis.n = n;\n\t\tthis.e = e;\n\t}", "this.n = n", "this.n", "this", "this.n", "n", "this.e = e", "this.e", "this", "this.e", "e", "int n", "n", "int e", "e", "public class Main {\n\n\tpublic static String Y = \"Yes\";\n\tpublic static String N = \"No\";\n\tpublic static long MOD = (long) (Math.pow(10, 9) + 7);\n\tpublic static Scanner sc = new Scanner(System.in);\n\n\tpublic static void main(String[] args) {\n\n\t\tint n = ni();\n\t\tif (n == 0) {\n\t\t\tout(1);\n\t\t} else {\n\t\t\tout(0);\n\t\t}\n\n\t}\n\n\t/*\n\t * 以下メソッド集\n\t */\n\n\tpublic static int[] kousokusoinnsuubunkaihairetsu(int a) {\n\t\tint[] d = new int[a];\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\td[i] = i;\n\t\t}\n\t\tfor (int i = 2; i * i < a; i++) {\n\t\t\tfor (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}\n\n\t\t}\n\n\t\treturn d;\n\t}\n\n\tpublic static void permutation(String q, String ans) {\n\t\t// Base Case\n\t\tif (q.length() <= 1) {\n\t\t\tSystem.out.println(ans + q);\n\t\t}\n\t\t// General Case\n\t\telse {\n\t\t\tfor (int i = 0; i < q.length(); i++) {\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}\n\t\t}\n\t}\n\n\tstatic char[][] same(char[][] c, int h, int w) {\n\n\t\tchar[][] a = new char[h][w];\n\t\tfor (int i = 0; i < h; i++) {\n\t\t\tfor (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}\n\t\t}\n\t\treturn a;\n\n\t}\n\n\tstatic int countkuro(char[][] c) {\n\n\t\tint count = 0;\n\t\tfor (char[] cc : c) {\n\t\t\tfor (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}\n\n\tstatic void debug() {\n\n\t\tout(\"---\");\n\t}\n\n\tstatic void debug(Object a) {\n\n\t\tout(\"-------\");\n\t\tout(a);\n\t\tout(\"-------\");\n\t}\n\n\tstatic int ketasuu(int n) {\n\n\t\tString str = \"\" + n;\n\t\treturn str.length();\n\t}\n\n\tstatic int account(String str) {\n\n\t\tString target = \"AC\";\n\t\tint count = 0;\n\t\tint len = str.length();\n\t\tfor (int i = 0; i < len - 1; i++) {\n\t\t\tif (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}\n\n\tstatic int ni() {\n\n\t\treturn sc.nextInt();\n\t}\n\n\tstatic long nl() {\n\n\t\treturn sc.nextLong();\n\t}\n\n\tstatic double nd() {\n\n\t\treturn sc.nextDouble();\n\t}\n\n\tstatic String n() {\n\n\t\treturn sc.next();\n\t}\n\n\tstatic char[] nc() {\n\n\t\treturn sc.next().toCharArray();\n\t}\n\n\tstatic int kaijo(int n) {\n\n\t\tif (n == 0 || n == 1) {\n\t\t\treturn 1;\n\t\t} else {\n\t\t\treturn n * kaijo(n - 1);\n\t\t}\n\t}\n\n\tstatic int fib(int n) {\n\n\t\treturn (n == 1 || n == 0) ? n : fib(n - 2) + fib(n - 1);\n\t}\n\n\tstatic long lcm(long m, long n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}\n\n\tstatic int lcm(int m, int n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}\n\n\tstatic long gcd(long a, long b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}\n\n\tstatic int gcd(int a, int b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}\n\n\tstatic void out(Object obj) {\n\t\tSystem.out.println(obj);\n\t}\n\n\tstatic void outn(Object obj) {\n\t\tSystem.out.print(obj);\n\t}\n\n\tstatic double max(double d, double e) {\n\n\t\treturn Math.max(d, e);\n\t}\n\n\tstatic long max(long a, long b) {\n\n\t\treturn Math.max(a, b);\n\t}\n\n\tstatic long min(long d, long e) {\n\n\t\treturn Math.min(d, e);\n\t}\n\n\tstatic int min(int a, int b) {\n\n\t\treturn Math.min(a, b);\n\t}\n}", "public class Main {\n\n\tpublic static String Y = \"Yes\";\n\tpublic static String N = \"No\";\n\tpublic static long MOD = (long) (Math.pow(10, 9) + 7);\n\tpublic static Scanner sc = new Scanner(System.in);\n\n\tpublic static void main(String[] args) {\n\n\t\tint n = ni();\n\t\tif (n == 0) {\n\t\t\tout(1);\n\t\t} else {\n\t\t\tout(0);\n\t\t}\n\n\t}\n\n\t/*\n\t * 以下メソッド集\n\t */\n\n\tpublic static int[] kousokusoinnsuubunkaihairetsu(int a) {\n\t\tint[] d = new int[a];\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\td[i] = i;\n\t\t}\n\t\tfor (int i = 2; i * i < a; i++) {\n\t\t\tfor (int j = i * i; j < a; j += i) {\n\t\t\t\tif (d[j] == j)\n\t\t\t\t\td[j] = i;\n\t\t\t}\n\n\t\t}\n\n\t\treturn d;\n\t}\n\n\tpublic static void permutation(String q, String ans) {\n\t\t// Base Case\n\t\tif (q.length() <= 1) {\n\t\t\tSystem.out.println(ans + q);\n\t\t}\n\t\t// General Case\n\t\telse {\n\t\t\tfor (int i = 0; i < q.length(); i++) {\n\t\t\t\tpermutation(q.substring(0, i) + q.substring(i + 1),\n\t\t\t\t\t\tans + q.charAt(i));\n\t\t\t}\n\t\t}\n\t}\n\n\tstatic char[][] same(char[][] c, int h, int w) {\n\n\t\tchar[][] a = new char[h][w];\n\t\tfor (int i = 0; i < h; i++) {\n\t\t\tfor (int j = 0; j < w; j++) {\n\t\t\t\ta[i][j] = c[i][j];\n\t\t\t}\n\t\t}\n\t\treturn a;\n\n\t}\n\n\tstatic int countkuro(char[][] c) {\n\n\t\tint count = 0;\n\t\tfor (char[] cc : c) {\n\t\t\tfor (char ccc : cc) {\n\t\t\t\tif ('#' == ccc) {\n\t\t\t\t\tcount++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}\n\n\tstatic void debug() {\n\n\t\tout(\"---\");\n\t}\n\n\tstatic void debug(Object a) {\n\n\t\tout(\"-------\");\n\t\tout(a);\n\t\tout(\"-------\");\n\t}\n\n\tstatic int ketasuu(int n) {\n\n\t\tString str = \"\" + n;\n\t\treturn str.length();\n\t}\n\n\tstatic int account(String str) {\n\n\t\tString target = \"AC\";\n\t\tint count = 0;\n\t\tint len = str.length();\n\t\tfor (int i = 0; i < len - 1; i++) {\n\t\t\tif (target.equals(str.substring(i, i + target.length()))) {\n\t\t\t\tcount++;\n\t\t\t}\n\t\t}\n\t\treturn count;\n\t}\n\n\tstatic int ni() {\n\n\t\treturn sc.nextInt();\n\t}\n\n\tstatic long nl() {\n\n\t\treturn sc.nextLong();\n\t}\n\n\tstatic double nd() {\n\n\t\treturn sc.nextDouble();\n\t}\n\n\tstatic String n() {\n\n\t\treturn sc.next();\n\t}\n\n\tstatic char[] nc() {\n\n\t\treturn sc.next().toCharArray();\n\t}\n\n\tstatic int kaijo(int n) {\n\n\t\tif (n == 0 || n == 1) {\n\t\t\treturn 1;\n\t\t} else {\n\t\t\treturn n * kaijo(n - 1);\n\t\t}\n\t}\n\n\tstatic int fib(int n) {\n\n\t\treturn (n == 1 || n == 0) ? n : fib(n - 2) + fib(n - 1);\n\t}\n\n\tstatic long lcm(long m, long n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}\n\n\tstatic int lcm(int m, int n) {\n\n\t\treturn m * n / gcd(m, n);\n\t}\n\n\tstatic long gcd(long a, long b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}\n\n\tstatic int gcd(int a, int b) {\n\n\t\treturn (b == 0) ? a : gcd(b, a % b);\n\t}\n\n\tstatic void out(Object obj) {\n\t\tSystem.out.println(obj);\n\t}\n\n\tstatic void outn(Object obj) {\n\t\tSystem.out.print(obj);\n\t}\n\n\tstatic double max(double d, double e) {\n\n\t\treturn Math.max(d, e);\n\t}\n\n\tstatic long max(long a, long b) {\n\n\t\treturn Math.max(a, b);\n\t}\n\n\tstatic long min(long d, long e) {\n\n\t\treturn Math.min(d, e);\n\t}\n\n\tstatic int min(int a, int b) {\n\n\t\treturn Math.min(a, b);\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static String Y = "Yes"; public static String N = "No"; public static long MOD = (long) (Math.pow(10, 9) + 7); public static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int n = ni(); if (n == 0) { out(1); } else { out(0); } } /* * 以下メソッド集 */ public static int[] kousokusoinnsuubunkaihairetsu(int a) { int[] d = new int[a]; for (int i = 0; i < a; i++) { d[i] = i; } for (int i = 2; i * i < a; i++) { for (int j = i * i; j < a; j += i) { if (d[j] == j) d[j] = i; } } return d; } public static void permutation(String q, String ans) { // Base Case if (q.length() <= 1) { System.out.println(ans + q); } // General Case else { for (int i = 0; i < q.length(); i++) { permutation(q.substring(0, i) + q.substring(i + 1), ans + q.charAt(i)); } } } static char[][] same(char[][] c, int h, int w) { char[][] a = new char[h][w]; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { a[i][j] = c[i][j]; } } return a; } static int countkuro(char[][] c) { int count = 0; for (char[] cc : c) { for (char ccc : cc) { if ('#' == ccc) { count++; } } } return count; } static void debug() { out("---"); } static void debug(Object a) { out("-------"); out(a); out("-------"); } static int ketasuu(int n) { String str = "" + n; return str.length(); } static int account(String str) { String target = "AC"; int count = 0; int len = str.length(); for (int i = 0; i < len - 1; i++) { if (target.equals(str.substring(i, i + target.length()))) { count++; } } return count; } static int ni() { return sc.nextInt(); } static long nl() { return sc.nextLong(); } static double nd() { return sc.nextDouble(); } static String n() { return sc.next(); } static char[] nc() { return sc.next().toCharArray(); } static int kaijo(int n) { if (n == 0 || n == 1) { return 1; } else { return n * kaijo(n - 1); } } static int fib(int n) { return (n == 1 || n == 0) ? n : fib(n - 2) + fib(n - 1); } static long lcm(long m, long n) { return m * n / gcd(m, n); } static int lcm(int m, int n) { return m * n / gcd(m, n); } static long gcd(long a, long b) { return (b == 0) ? a : gcd(b, a % b); } static int gcd(int a, int b) { return (b == 0) ? a : gcd(b, a % b); } static void out(Object obj) { System.out.println(obj); } static void outn(Object obj) { System.out.print(obj); } static double max(double d, double e) { return Math.max(d, e); } static long max(long a, long b) { return Math.max(a, b); } static long min(long d, long e) { return Math.min(d, e); } static int min(int a, int b) { return Math.min(a, b); } } class XY { int h; int w; int d; XY(int h, int w, int d) { this.h = h; this.w = w; this.d = d; } } class NE { int n; int e; NE(int n, int e) { this.n = n; this.e = e; } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 17, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 6, 13, 41, 13, 41, 13, 20, 17, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 0, 18, 36, 13, 17, 23, 13, 12, 13, 30, 14, 2, 13, 13, 30, 0, 13, 17, 38, 5, 13, 30, 37, 20, 30, 0, 13, 4, 18, 13, 13, 14, 2, 13, 17, 29, 17, 29, 17, 12, 13, 30, 14, 4, 13, 29, 18, 13, 40, 13, 29, 40, 17, 12, 13, 30, 29, 40, 2, 2, 13, 17, 2, 13, 17, 23, 13, 12, 13, 30, 42, 2, 4, 13, 4, 13, 18, 13, 13, 40, 13, 12, 13, 30, 4, 13, 29, 4, 13, 12, 13, 30, 14, 40, 4, 13, 37, 20, 41, 13, 20, 41, 13, 4, 13, 42, 40, 4, 13, 13, 30, 4, 18, 13, 13, 0, 13, 4, 13, 29, 4, 18, 13, 12, 13, 30, 14, 40, 4, 13, 37, 20, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 0, 13, 4, 13, 41, 13, 17, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 37, 20, 0, 13, 2, 2, 2, 13, 17, 13, 17, 0, 13, 4, 13, 29, 8, 13, 40, 13, 13, 12, 13, 30, 14, 40, 4, 13, 37, 20, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 0, 13, 4, 13, 41, 13, 17, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 37, 20, 0, 13, 2, 2, 2, 13, 17, 13, 17, 0, 13, 4, 13, 29, 8, 13, 40, 13, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 18, 4, 13, 29, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 449, 14 ], [ 449, 15 ], [ 15, 16 ], [ 15, 17 ], [ 449, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 24, 26 ], [ 20, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 20, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 32, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 32, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 18, 50 ], [ 50, 51 ], [ 449, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 52, 56 ], [ 56, 57 ], [ 56, 58 ], [ 52, 60 ], [ 60, 61 ], [ 52, 62 ], [ 62, 63 ], [ 52, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 66, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 76, 80 ], [ 64, 81 ], [ 81, 82 ], [ 52, 83 ], [ 83, 84 ], [ 83, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 90, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 97, 98 ], [ 98, 99 ], [ 94, 100 ], [ 100, 101 ], [ 101, 102 ], [ 101, 103 ], [ 103, 104 ], [ 104, 105 ], [ 103, 106 ], [ 90, 107 ], [ 107, 108 ], [ 108, 109 ], [ 108, 110 ], [ 107, 111 ], [ 111, 112 ], [ 85, 113 ], [ 113, 114 ], [ 52, 115 ], [ 115, 116 ], [ 115, 117 ], [ 117, 118 ], [ 118, 119 ], [ 119, 120 ], [ 118, 121 ], [ 121, 122 ], [ 122, 123 ], [ 122, 124 ], [ 124, 125 ], [ 118, 126 ], [ 126, 127 ], [ 127, 128 ], [ 52, 129 ], [ 129, 130 ], [ 129, 131 ], [ 131, 132 ], [ 132, 133 ], [ 133, 134 ], [ 134, 135 ], [ 135, 136 ], [ 135, 137 ], [ 134, 138 ], [ 138, 139 ], [ 138, 140 ], [ 129, 141 ], [ 141, 142 ], [ 52, 143 ], [ 143, 144 ], [ 143, 145 ], [ 145, 146 ], [ 146, 147 ], [ 147, 148 ], [ 148, 149 ], [ 147, 150 ], [ 150, 151 ], [ 150, 152 ], [ 152, 153 ], [ 152, 154 ], [ 146, 155 ], [ 155, 156 ], [ 52, 157 ], [ 157, 158 ], [ 157, 159 ], [ 159, 160 ], [ 160, 161 ], [ 159, 162 ], [ 162, 163 ], [ 163, 164 ], [ 52, 165 ], [ 165, 166 ], [ 165, 167 ], [ 167, 168 ], [ 168, 169 ], [ 169, 170 ], [ 170, 171 ], [ 168, 172 ], [ 172, 173 ], [ 167, 174 ], [ 174, 175 ], [ 174, 176 ], [ 167, 177 ], [ 177, 178 ], [ 177, 179 ], [ 179, 180 ], [ 167, 181 ], [ 181, 182 ], [ 182, 183 ], [ 183, 184 ], [ 183, 185 ], [ 181, 186 ], [ 186, 187 ], [ 187, 188 ], [ 188, 189 ], [ 187, 190 ], [ 186, 191 ], [ 191, 192 ], [ 191, 193 ], [ 193, 194 ], [ 167, 195 ], [ 195, 196 ], [ 196, 197 ], [ 197, 198 ], [ 52, 199 ], [ 199, 200 ], [ 199, 201 ], [ 201, 202 ], [ 202, 203 ], [ 203, 204 ], [ 204, 205 ], [ 202, 206 ], [ 206, 207 ], [ 201, 208 ], [ 208, 209 ], [ 208, 210 ], [ 210, 211 ], [ 201, 212 ], [ 212, 213 ], [ 213, 214 ], [ 213, 215 ], [ 212, 216 ], [ 216, 217 ], [ 216, 218 ], [ 218, 219 ], [ 201, 220 ], [ 220, 221 ], [ 220, 222 ], [ 201, 223 ], [ 223, 224 ], [ 224, 225 ], [ 224, 226 ], [ 223, 227 ], [ 227, 228 ], [ 228, 229 ], [ 228, 230 ], [ 227, 231 ], [ 231, 232 ], [ 231, 233 ], [ 233, 234 ], [ 201, 235 ], [ 235, 236 ], [ 235, 237 ], [ 201, 238 ], [ 238, 239 ], [ 239, 240 ], [ 240, 241 ], [ 240, 242 ], [ 238, 243 ], [ 243, 244 ], [ 244, 245 ], [ 245, 246 ], [ 246, 247 ], [ 246, 248 ], [ 245, 249 ], [ 249, 250 ], [ 249, 251 ], [ 244, 252 ], [ 252, 253 ], [ 243, 254 ], [ 254, 255 ], [ 254, 256 ], [ 256, 257 ], [ 257, 258 ], [ 258, 259 ], [ 258, 260 ], [ 257, 261 ], [ 256, 262 ], [ 243, 263 ], [ 263, 264 ], [ 263, 265 ], [ 265, 266 ], [ 201, 267 ], [ 267, 268 ], [ 268, 269 ], [ 268, 270 ], [ 270, 271 ], [ 268, 272 ], [ 52, 273 ], [ 273, 274 ], [ 273, 275 ], [ 275, 276 ], [ 276, 277 ], [ 277, 278 ], [ 278, 279 ], [ 276, 280 ], [ 280, 281 ], [ 275, 282 ], [ 282, 283 ], [ 282, 284 ], [ 284, 285 ], [ 275, 286 ], [ 286, 287 ], [ 287, 288 ], [ 287, 289 ], [ 286, 290 ], [ 290, 291 ], [ 290, 292 ], [ 292, 293 ], [ 275, 294 ], [ 294, 295 ], [ 294, 296 ], [ 275, 297 ], [ 297, 298 ], [ 298, 299 ], [ 298, 300 ], [ 297, 301 ], [ 301, 302 ], [ 302, 303 ], [ 302, 304 ], [ 301, 305 ], [ 305, 306 ], [ 305, 307 ], [ 307, 308 ], [ 275, 309 ], [ 309, 310 ], [ 309, 311 ], [ 275, 312 ], [ 312, 313 ], [ 313, 314 ], [ 314, 315 ], [ 314, 316 ], [ 312, 317 ], [ 317, 318 ], [ 318, 319 ], [ 319, 320 ], [ 320, 321 ], [ 320, 322 ], [ 319, 323 ], [ 323, 324 ], [ 323, 325 ], [ 318, 326 ], [ 326, 327 ], [ 317, 328 ], [ 328, 329 ], [ 328, 330 ], [ 330, 331 ], [ 331, 332 ], [ 332, 333 ], [ 332, 334 ], [ 331, 335 ], [ 330, 336 ], [ 317, 337 ], [ 337, 338 ], [ 337, 339 ], [ 339, 340 ], [ 275, 341 ], [ 341, 342 ], [ 342, 343 ], [ 342, 344 ], [ 344, 345 ], [ 342, 346 ], [ 52, 347 ], [ 347, 348 ], [ 347, 349 ], [ 349, 350 ], [ 350, 351 ], [ 351, 352 ], [ 352, 353 ], [ 351, 354 ], [ 354, 355 ], [ 52, 356 ], [ 356, 357 ], [ 356, 358 ], [ 358, 359 ], [ 359, 360 ], [ 359, 361 ], [ 358, 363 ], [ 363, 364 ], [ 364, 365 ], [ 365, 366 ], [ 365, 367 ], [ 363, 368 ], [ 368, 369 ], [ 368, 370 ], [ 363, 371 ], [ 371, 372 ], [ 372, 373 ], [ 363, 374 ], [ 374, 375 ], [ 375, 376 ], [ 376, 377 ], [ 376, 378 ], [ 375, 379 ], [ 379, 380 ], [ 358, 381 ], [ 381, 382 ], [ 356, 383 ], [ 383, 384 ], [ 52, 385 ], [ 385, 386 ], [ 385, 387 ], [ 387, 388 ], [ 388, 389 ], [ 388, 390 ], [ 387, 392 ], [ 392, 393 ], [ 393, 394 ], [ 394, 395 ], [ 394, 396 ], [ 392, 397 ], [ 397, 398 ], [ 397, 399 ], [ 392, 400 ], [ 400, 401 ], [ 401, 402 ], [ 392, 403 ], [ 403, 404 ], [ 404, 405 ], [ 405, 406 ], [ 405, 407 ], [ 404, 408 ], [ 408, 409 ], [ 387, 410 ], [ 410, 411 ], [ 385, 412 ], [ 412, 413 ], [ 52, 414 ], [ 414, 415 ], [ 414, 416 ], [ 416, 417 ], [ 417, 418 ], [ 417, 419 ], [ 416, 422 ], [ 422, 423 ], [ 423, 424 ], [ 424, 425 ], [ 424, 426 ], [ 422, 427 ], [ 427, 428 ], [ 427, 429 ], [ 422, 430 ], [ 430, 431 ], [ 431, 432 ], [ 422, 433 ], [ 433, 434 ], [ 434, 435 ], [ 435, 436 ], [ 435, 437 ], [ 434, 438 ], [ 438, 439 ], [ 439, 440 ], [ 440, 441 ], [ 416, 442 ], [ 442, 443 ], [ 414, 444 ], [ 444, 445 ], [ 414, 446 ], [ 446, 447 ], [ 0, 448 ], [ 448, 449 ], [ 448, 450 ] ]
[ "\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.*;\n\n \npublic class Main {\n\tstatic final long MOD=1000000007;//998244353;\n\tpublic static void main(String[] args) {\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tInputReader sc=new InputReader(System.in);\n\t\tint x=sc.nextInt();\n\t\tif (x==0) {\n\t\t\tSystem.out.println(1);\n\t\t}else {\n\t\t\tSystem.out.println(0);\n\t\t}\n \t}\n\t\n\t\tstatic class InputReader { \n\t\tprivate InputStream in;\n\t\tprivate byte[] buffer = new byte[1024];\n\t\tprivate int curbuf;\n\t\tprivate int lenbuf;\n\t\tpublic InputReader(InputStream in) {\n\t\t\tthis.in = in;\n\t\t\tthis.curbuf = this.lenbuf = 0;\n\t\t}\n \n\t\tpublic boolean hasNextByte() {\n\t\t\tif (curbuf >= lenbuf) {\n\t\t\t\tcurbuf = 0;\n\t\t\t\ttry {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tif (lenbuf <= 0)\n\t\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n \n\t\tprivate int readByte() {\n\t\t\tif (hasNextByte())\n\t\t\t\treturn buffer[curbuf++];\n\t\t\telse\n\t\t\t\treturn -1;\n\t\t}\n \n\t\tprivate boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n \n\t\tprivate void skip() {\n\t\t\twhile (hasNextByte() && isSpaceChar(buffer[curbuf]))\n\t\t\t\tcurbuf++;\n\t\t}\n \n\t\tpublic boolean hasNext() {\n\t\t\tskip();\n\t\t\treturn hasNextByte();\n\t\t}\n \n\t\tpublic String next() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n \n\t\tpublic int nextInt() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tint res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic char[][] nextCharMap(int n, int m) {\n\t\t\tchar[][] map = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tmap[i] = next().toCharArray();\n\t\t\treturn map;\n\t\t}\n\t}\n\t}", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.*;", "util.*", "java", "public class Main {\n\tstatic final long MOD=1000000007;//998244353;\n\tpublic static void main(String[] args) {\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tInputReader sc=new InputReader(System.in);\n\t\tint x=sc.nextInt();\n\t\tif (x==0) {\n\t\t\tSystem.out.println(1);\n\t\t}else {\n\t\t\tSystem.out.println(0);\n\t\t}\n \t}\n\t\n\t\tstatic class InputReader { \n\t\tprivate InputStream in;\n\t\tprivate byte[] buffer = new byte[1024];\n\t\tprivate int curbuf;\n\t\tprivate int lenbuf;\n\t\tpublic InputReader(InputStream in) {\n\t\t\tthis.in = in;\n\t\t\tthis.curbuf = this.lenbuf = 0;\n\t\t}\n \n\t\tpublic boolean hasNextByte() {\n\t\t\tif (curbuf >= lenbuf) {\n\t\t\t\tcurbuf = 0;\n\t\t\t\ttry {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tif (lenbuf <= 0)\n\t\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n \n\t\tprivate int readByte() {\n\t\t\tif (hasNextByte())\n\t\t\t\treturn buffer[curbuf++];\n\t\t\telse\n\t\t\t\treturn -1;\n\t\t}\n \n\t\tprivate boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n \n\t\tprivate void skip() {\n\t\t\twhile (hasNextByte() && isSpaceChar(buffer[curbuf]))\n\t\t\t\tcurbuf++;\n\t\t}\n \n\t\tpublic boolean hasNext() {\n\t\t\tskip();\n\t\t\treturn hasNextByte();\n\t\t}\n \n\t\tpublic String next() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n \n\t\tpublic int nextInt() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tint res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic char[][] nextCharMap(int n, int m) {\n\t\t\tchar[][] map = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tmap[i] = next().toCharArray();\n\t\t\treturn map;\n\t\t}\n\t}\n\t}", "Main", "static final long MOD=1000000007;//998244353;", "MOD", "1000000007", "public static void main(String[] args) {\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tInputReader sc=new InputReader(System.in);\n\t\tint x=sc.nextInt();\n\t\tif (x==0) {\n\t\t\tSystem.out.println(1);\n\t\t}else {\n\t\t\tSystem.out.println(0);\n\t\t}\n \t}", "main", "{\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tInputReader sc=new InputReader(System.in);\n\t\tint x=sc.nextInt();\n\t\tif (x==0) {\n\t\t\tSystem.out.println(1);\n\t\t}else {\n\t\t\tSystem.out.println(0);\n\t\t}\n \t}", "PrintWriter out = new PrintWriter(System.out);", "out", "new PrintWriter(System.out)", "InputReader sc=new InputReader(System.in);", "sc", "new InputReader(System.in)", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "if (x==0) {\n\t\t\tSystem.out.println(1);\n\t\t}else {\n\t\t\tSystem.out.println(0);\n\t\t}", "x==0", "x", "0", "{\n\t\t\tSystem.out.println(1);\n\t\t}", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "{\n\t\t\tSystem.out.println(0);\n\t\t}", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "static class InputReader { \n\t\tprivate InputStream in;\n\t\tprivate byte[] buffer = new byte[1024];\n\t\tprivate int curbuf;\n\t\tprivate int lenbuf;\n\t\tpublic InputReader(InputStream in) {\n\t\t\tthis.in = in;\n\t\t\tthis.curbuf = this.lenbuf = 0;\n\t\t}\n \n\t\tpublic boolean hasNextByte() {\n\t\t\tif (curbuf >= lenbuf) {\n\t\t\t\tcurbuf = 0;\n\t\t\t\ttry {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tif (lenbuf <= 0)\n\t\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n \n\t\tprivate int readByte() {\n\t\t\tif (hasNextByte())\n\t\t\t\treturn buffer[curbuf++];\n\t\t\telse\n\t\t\t\treturn -1;\n\t\t}\n \n\t\tprivate boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n \n\t\tprivate void skip() {\n\t\t\twhile (hasNextByte() && isSpaceChar(buffer[curbuf]))\n\t\t\t\tcurbuf++;\n\t\t}\n \n\t\tpublic boolean hasNext() {\n\t\t\tskip();\n\t\t\treturn hasNextByte();\n\t\t}\n \n\t\tpublic String next() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n \n\t\tpublic int nextInt() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tint res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic char[][] nextCharMap(int n, int m) {\n\t\t\tchar[][] map = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tmap[i] = next().toCharArray();\n\t\t\treturn map;\n\t\t}\n\t}", "InputReader", "private InputStream in;", "in", "private byte[] buffer = new byte[1024];", "buffer", "new byte[1024]", "1024", "private int curbuf;", "curbuf", "private int lenbuf;", "lenbuf", "public InputReader(InputStream in) {\n\t\t\tthis.in = in;\n\t\t\tthis.curbuf = this.lenbuf = 0;\n\t\t}", "InputReader", "{\n\t\t\tthis.in = in;\n\t\t\tthis.curbuf = this.lenbuf = 0;\n\t\t}", "this.in = in", "this.in", "this", "this.in", "in", "this.curbuf = this.lenbuf = 0", "this.curbuf", "this", "this.curbuf", "this.lenbuf = 0", "this.lenbuf", "this", "this.lenbuf", "0", "InputStream in", "in", "public boolean hasNextByte() {\n\t\t\tif (curbuf >= lenbuf) {\n\t\t\t\tcurbuf = 0;\n\t\t\t\ttry {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tif (lenbuf <= 0)\n\t\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t}", "hasNextByte", "{\n\t\t\tif (curbuf >= lenbuf) {\n\t\t\t\tcurbuf = 0;\n\t\t\t\ttry {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tif (lenbuf <= 0)\n\t\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t}", "if (curbuf >= lenbuf) {\n\t\t\t\tcurbuf = 0;\n\t\t\t\ttry {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tif (lenbuf <= 0)\n\t\t\t\t\treturn false;\n\t\t\t}", "curbuf >= lenbuf", "curbuf", "lenbuf", "{\n\t\t\t\tcurbuf = 0;\n\t\t\t\ttry {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tif (lenbuf <= 0)\n\t\t\t\t\treturn false;\n\t\t\t}", "curbuf = 0", "curbuf", "0", "try {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}", "catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}", "IOException e", "{\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}", "throw new InputMismatchException();", "new InputMismatchException()", "{\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t}", "lenbuf = in.read(buffer)", "lenbuf", "in.read(buffer)", "in.read", "in", "buffer", "if (lenbuf <= 0)\n\t\t\t\t\treturn false;", "lenbuf <= 0", "lenbuf", "0", "return false;", "false", "return true;", "true", "private int readByte() {\n\t\t\tif (hasNextByte())\n\t\t\t\treturn buffer[curbuf++];\n\t\t\telse\n\t\t\t\treturn -1;\n\t\t}", "readByte", "{\n\t\t\tif (hasNextByte())\n\t\t\t\treturn buffer[curbuf++];\n\t\t\telse\n\t\t\t\treturn -1;\n\t\t}", "if (hasNextByte())\n\t\t\t\treturn buffer[curbuf++];\n\t\t\telse\n\t\t\t\treturn -1;", "hasNextByte()", "hasNextByte", "return buffer[curbuf++];", "buffer[curbuf++]", "buffer", "curbuf++", "curbuf", "return -1;", "-1", "1", "private boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}", "isSpaceChar", "{\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}", "return !(c >= 33 && c <= 126);", "!(c >= 33 && c <= 126)", "(c >= 33 && c <= 126)", "c >= 33", "c", "33", "c <= 126", "c", "126", "int c", "c", "private void skip() {\n\t\t\twhile (hasNextByte() && isSpaceChar(buffer[curbuf]))\n\t\t\t\tcurbuf++;\n\t\t}", "skip", "{\n\t\t\twhile (hasNextByte() && isSpaceChar(buffer[curbuf]))\n\t\t\t\tcurbuf++;\n\t\t}", "while (hasNextByte() && isSpaceChar(buffer[curbuf]))\n\t\t\t\tcurbuf++;", "hasNextByte() && isSpaceChar(buffer[curbuf])", "hasNextByte()", "hasNextByte", "isSpaceChar(buffer[curbuf])", "isSpaceChar", "buffer[curbuf]", "buffer", "curbuf", "curbuf++", "curbuf", "public boolean hasNext() {\n\t\t\tskip();\n\t\t\treturn hasNextByte();\n\t\t}", "hasNext", "{\n\t\t\tskip();\n\t\t\treturn hasNextByte();\n\t\t}", "skip()", "skip", "return hasNextByte();", "hasNextByte()", "hasNextByte", "public String next() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}", "next", "{\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}", "if (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();", "!hasNext()", "hasNext()", "hasNext", "throw new NoSuchElementException();", "new NoSuchElementException()", "StringBuilder sb = new StringBuilder();", "sb", "new StringBuilder()", "int b = readByte();", "b", "readByte()", "readByte", "while (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}", "!isSpaceChar(b)", "isSpaceChar(b)", "isSpaceChar", "b", "{\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}", "sb.appendCodePoint(b)", "sb.appendCodePoint", "sb", "b", "b = readByte()", "b", "readByte()", "readByte", "return sb.toString();", "sb.toString()", "sb.toString", "sb", "public int nextInt() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tint res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}", "nextInt", "{\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tint res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}", "if (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();", "!hasNext()", "hasNext()", "hasNext", "throw new NoSuchElementException();", "new NoSuchElementException()", "int c = readByte();", "c", "readByte()", "readByte", "while (isSpaceChar(c))\n\t\t\t\tc = readByte();", "isSpaceChar(c)", "isSpaceChar", "c", "c = readByte()", "c", "readByte()", "readByte", "boolean minus = false;", "minus", "false", "if (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}", "c == '-'", "c", "'-'", "{\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}", "minus = true", "minus", "true", "c = readByte()", "c", "readByte()", "readByte", "int res = 0;", "res", "0", "do {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t}", "if (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();", "c < '0' || c > '9'", "c < '0'", "c", "'0'", "c > '9'", "c", "'9'", "throw new InputMismatchException();", "new InputMismatchException()", "res = res * 10 + c - '0'", "res", "res * 10 + c - '0'", "res * 10 + c", "res * 10", "res", "10", "c", "'0'", "c = readByte()", "c", "readByte()", "readByte", "return (minus) ? -res : res;", "(minus) ? -res : res", "(minus)", "-res", "res", "res", "public long nextLong() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}", "nextLong", "{\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}", "if (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();", "!hasNext()", "hasNext()", "hasNext", "throw new NoSuchElementException();", "new NoSuchElementException()", "int c = readByte();", "c", "readByte()", "readByte", "while (isSpaceChar(c))\n\t\t\t\tc = readByte();", "isSpaceChar(c)", "isSpaceChar", "c", "c = readByte()", "c", "readByte()", "readByte", "boolean minus = false;", "minus", "false", "if (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}", "c == '-'", "c", "'-'", "{\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}", "minus = true", "minus", "true", "c = readByte()", "c", "readByte()", "readByte", "long res = 0;", "res", "0", "do {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t}", "if (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();", "c < '0' || c > '9'", "c < '0'", "c", "'0'", "c > '9'", "c", "'9'", "throw new InputMismatchException();", "new InputMismatchException()", "res = res * 10 + c - '0'", "res", "res * 10 + c - '0'", "res * 10 + c", "res * 10", "res", "10", "c", "'0'", "c = readByte()", "c", "readByte()", "readByte", "return (minus) ? -res : res;", "(minus) ? -res : res", "(minus)", "-res", "res", "res", "public double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}", "nextDouble", "{\n\t\t\treturn Double.parseDouble(next());\n\t\t}", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "public int[] nextIntArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}", "nextIntArray", "{\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}", "int[] a = new int[n];", "a", "new int[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "a[i] = nextInt();", "a[i] = nextInt()", "a[i]", "a", "i", "nextInt()", "nextInt", "return a;", "a", "int n", "n", "public long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}", "nextLongArray", "{\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}", "long[] a = new long[n];", "a", "new long[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "a[i] = nextLong();", "a[i] = nextLong()", "a[i]", "a", "i", "nextLong()", "nextLong", "return a;", "a", "int n", "n", "public char[][] nextCharMap(int n, int m) {\n\t\t\tchar[][] map = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tmap[i] = next().toCharArray();\n\t\t\treturn map;\n\t\t}", "nextCharMap", "{\n\t\t\tchar[][] map = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tmap[i] = next().toCharArray();\n\t\t\treturn map;\n\t\t}", "char[][] map = new char[n][m];", "map", "new char[n][m]", "n", "m", "for (int i = 0; i < n; i++)\n\t\t\t\tmap[i] = next().toCharArray();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "map[i] = next().toCharArray();", "map[i] = next().toCharArray()", "map[i]", "map", "i", "next().toCharArray()", "next().toCharArray", "next()", "next", "return map;", "map", "int n", "n", "int m", "m", "public class Main {\n\tstatic final long MOD=1000000007;//998244353;\n\tpublic static void main(String[] args) {\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tInputReader sc=new InputReader(System.in);\n\t\tint x=sc.nextInt();\n\t\tif (x==0) {\n\t\t\tSystem.out.println(1);\n\t\t}else {\n\t\t\tSystem.out.println(0);\n\t\t}\n \t}\n\t\n\t\tstatic class InputReader { \n\t\tprivate InputStream in;\n\t\tprivate byte[] buffer = new byte[1024];\n\t\tprivate int curbuf;\n\t\tprivate int lenbuf;\n\t\tpublic InputReader(InputStream in) {\n\t\t\tthis.in = in;\n\t\t\tthis.curbuf = this.lenbuf = 0;\n\t\t}\n \n\t\tpublic boolean hasNextByte() {\n\t\t\tif (curbuf >= lenbuf) {\n\t\t\t\tcurbuf = 0;\n\t\t\t\ttry {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tif (lenbuf <= 0)\n\t\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n \n\t\tprivate int readByte() {\n\t\t\tif (hasNextByte())\n\t\t\t\treturn buffer[curbuf++];\n\t\t\telse\n\t\t\t\treturn -1;\n\t\t}\n \n\t\tprivate boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n \n\t\tprivate void skip() {\n\t\t\twhile (hasNextByte() && isSpaceChar(buffer[curbuf]))\n\t\t\t\tcurbuf++;\n\t\t}\n \n\t\tpublic boolean hasNext() {\n\t\t\tskip();\n\t\t\treturn hasNextByte();\n\t\t}\n \n\t\tpublic String next() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n \n\t\tpublic int nextInt() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tint res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic char[][] nextCharMap(int n, int m) {\n\t\t\tchar[][] map = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tmap[i] = next().toCharArray();\n\t\t\treturn map;\n\t\t}\n\t}\n\t}", "public class Main {\n\tstatic final long MOD=1000000007;//998244353;\n\tpublic static void main(String[] args) {\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tInputReader sc=new InputReader(System.in);\n\t\tint x=sc.nextInt();\n\t\tif (x==0) {\n\t\t\tSystem.out.println(1);\n\t\t}else {\n\t\t\tSystem.out.println(0);\n\t\t}\n \t}\n\t\n\t\tstatic class InputReader { \n\t\tprivate InputStream in;\n\t\tprivate byte[] buffer = new byte[1024];\n\t\tprivate int curbuf;\n\t\tprivate int lenbuf;\n\t\tpublic InputReader(InputStream in) {\n\t\t\tthis.in = in;\n\t\t\tthis.curbuf = this.lenbuf = 0;\n\t\t}\n \n\t\tpublic boolean hasNextByte() {\n\t\t\tif (curbuf >= lenbuf) {\n\t\t\t\tcurbuf = 0;\n\t\t\t\ttry {\n\t\t\t\t\tlenbuf = in.read(buffer);\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tif (lenbuf <= 0)\n\t\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n \n\t\tprivate int readByte() {\n\t\t\tif (hasNextByte())\n\t\t\t\treturn buffer[curbuf++];\n\t\t\telse\n\t\t\t\treturn -1;\n\t\t}\n \n\t\tprivate boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n \n\t\tprivate void skip() {\n\t\t\twhile (hasNextByte() && isSpaceChar(buffer[curbuf]))\n\t\t\t\tcurbuf++;\n\t\t}\n \n\t\tpublic boolean hasNext() {\n\t\t\tskip();\n\t\t\treturn hasNextByte();\n\t\t}\n \n\t\tpublic String next() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tStringBuilder sb = new StringBuilder();\n\t\t\tint b = readByte();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n \n\t\tpublic int nextInt() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tint res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic long nextLong() {\n\t\t\tif (!hasNext())\n\t\t\t\tthrow new NoSuchElementException();\n\t\t\tint c = readByte();\n\t\t\twhile (isSpaceChar(c))\n\t\t\t\tc = readByte();\n\t\t\tboolean minus = false;\n\t\t\tif (c == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tc = readByte();\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tdo {\n\t\t\t\tif (c < '0' || c > '9')\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\tres = res * 10 + c - '0';\n\t\t\t\tc = readByte();\n\t\t\t} while (!isSpaceChar(c));\n\t\t\treturn (minus) ? -res : res;\n\t\t}\n \n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n \n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n \n\t\tpublic char[][] nextCharMap(int n, int m) {\n\t\t\tchar[][] map = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tmap[i] = next().toCharArray();\n\t\t\treturn map;\n\t\t}\n\t}\n\t}", "Main" ]
import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.*; public class Main { static final long MOD=1000000007;//998244353; public static void main(String[] args) { PrintWriter out = new PrintWriter(System.out); InputReader sc=new InputReader(System.in); int x=sc.nextInt(); if (x==0) { System.out.println(1); }else { System.out.println(0); } } static class InputReader { private InputStream in; private byte[] buffer = new byte[1024]; private int curbuf; private int lenbuf; public InputReader(InputStream in) { this.in = in; this.curbuf = this.lenbuf = 0; } public boolean hasNextByte() { if (curbuf >= lenbuf) { curbuf = 0; try { lenbuf = in.read(buffer); } catch (IOException e) { throw new InputMismatchException(); } if (lenbuf <= 0) return false; } return true; } private int readByte() { if (hasNextByte()) return buffer[curbuf++]; else return -1; } private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); } private void skip() { while (hasNextByte() && isSpaceChar(buffer[curbuf])) curbuf++; } public boolean hasNext() { skip(); return hasNextByte(); } public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while (!isSpaceChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public int nextInt() { if (!hasNext()) throw new NoSuchElementException(); int c = readByte(); while (isSpaceChar(c)) c = readByte(); boolean minus = false; if (c == '-') { minus = true; c = readByte(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res = res * 10 + c - '0'; c = readByte(); } while (!isSpaceChar(c)); return (minus) ? -res : res; } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); int c = readByte(); while (isSpaceChar(c)) c = readByte(); boolean minus = false; if (c == '-') { minus = true; c = readByte(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res = res * 10 + c - '0'; c = readByte(); } while (!isSpaceChar(c)); return (minus) ? -res : res; } public double nextDouble() { return Double.parseDouble(next()); } public int[] nextIntArray(int n) { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = nextInt(); return a; } public long[] nextLongArray(int n) { long[] a = new long[n]; for (int i = 0; i < n; i++) a[i] = nextLong(); return a; } public char[][] nextCharMap(int n, int m) { char[][] map = new char[n][m]; for (int i = 0; i < n; i++) map[i] = next().toCharArray(); return map; } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 4, 18, 13, 23, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 13, 17, 17, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 46, 11 ], [ 46, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 19, 20 ], [ 12, 21 ], [ 21, 22 ], [ 46, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 25, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 25, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 34, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 39, 43 ], [ 39, 44 ], [ 0, 45 ], [ 45, 46 ], [ 45, 47 ] ]
[ "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Main main = new Main();\n main.solve();\n }\n public void solve() {\n Scanner scan = new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n int x = scan.nextInt();\n System.out.println(x == 0 ? 1 : 0);\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n Main main = new Main();\n main.solve();\n }\n public void solve() {\n Scanner scan = new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n int x = scan.nextInt();\n System.out.println(x == 0 ? 1 : 0);\n }\n}", "Main", "public static void main(String[] args) {\n Main main = new Main();\n main.solve();\n }", "main", "{\n Main main = new Main();\n main.solve();\n }", "Main main = new Main();", "main", "new Main()", "main.solve()", "main.solve", "main", "String[] args", "args", "public void solve() {\n Scanner scan = new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n int x = scan.nextInt();\n System.out.println(x == 0 ? 1 : 0);\n }", "solve", "{\n Scanner scan = new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n int x = scan.nextInt();\n System.out.println(x == 0 ? 1 : 0);\n }", "Scanner scan = new Scanner(new BufferedReader(new InputStreamReader(System.in)));", "scan", "new Scanner(new BufferedReader(new InputStreamReader(System.in)))", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "System.out.println(x == 0 ? 1 : 0)", "System.out.println", "System.out", "System", "System.out", "x == 0 ? 1 : 0", "x == 0", "x", "0", "1", "0", "public class Main {\n public static void main(String[] args) {\n Main main = new Main();\n main.solve();\n }\n public void solve() {\n Scanner scan = new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n int x = scan.nextInt();\n System.out.println(x == 0 ? 1 : 0);\n }\n}", "public class Main {\n public static void main(String[] args) {\n Main main = new Main();\n main.solve();\n }\n public void solve() {\n Scanner scan = new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n int x = scan.nextInt();\n System.out.println(x == 0 ? 1 : 0);\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Scanner; public class Main { public static void main(String[] args) { Main main = new Main(); main.solve(); } public void solve() { Scanner scan = new Scanner(new BufferedReader(new InputStreamReader(System.in))); int x = scan.nextInt(); System.out.println(x == 0 ? 1 : 0); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 23, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 23, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 32, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 32, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 21, 50 ], [ 50, 51 ] ]
[ "import java.util.Scanner;\nimport java.util.Arrays;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.stream.Collectors;\nimport java.util.HashSet;\n\nclass Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int X=sc.nextInt();\n if (X==1) {\n System.out.println(0);\n\n }else{\n System.out.println(1);\n }\n}\n}", "import java.util.Scanner;", "Scanner", "java.util", "import java.util.Arrays;", "Arrays", "java.util", "import java.util.ArrayList;", "ArrayList", "java.util", "import java.util.List;", "List", "java.util", "import java.util.stream.Collectors;", "Collectors", "java.util.stream", "import java.util.HashSet;", "HashSet", "java.util", "class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int X=sc.nextInt();\n if (X==1) {\n System.out.println(0);\n\n }else{\n System.out.println(1);\n }\n}\n}", "Main", "public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int X=sc.nextInt();\n if (X==1) {\n System.out.println(0);\n\n }else{\n System.out.println(1);\n }\n}", "main", "{\n Scanner sc = new Scanner(System.in);\n int X=sc.nextInt();\n if (X==1) {\n System.out.println(0);\n\n }else{\n System.out.println(1);\n }\n}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int X=sc.nextInt();", "X", "sc.nextInt()", "sc.nextInt", "sc", "if (X==1) {\n System.out.println(0);\n\n }else{\n System.out.println(1);\n }", "X==1", "X", "1", "{\n System.out.println(0);\n\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "{\n System.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "String[] args", "args" ]
import java.util.Scanner; import java.util.Arrays; import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; import java.util.HashSet; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int X=sc.nextInt(); if (X==1) { System.out.println(0); }else{ System.out.println(1); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 13, 14, 2, 13, 17, 30, 0, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 48, 5 ], [ 48, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 19, 22 ], [ 8, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 23, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 23, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 8, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 39, 44 ], [ 6, 45 ], [ 45, 46 ], [ 0, 47 ], [ 47, 48 ], [ 47, 49 ] ]
[ "import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tint n = Integer.parseInt(line);\n\n\t\tif(n==1){\n\t\t\tn=0;\n }\n\t\telse if(n==0){\n\t\t\tn=1;\n }\n\t\tSystem.out.println(n);\n\t}\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tint n = Integer.parseInt(line);\n\n\t\tif(n==1){\n\t\t\tn=0;\n }\n\t\telse if(n==0){\n\t\t\tn=1;\n }\n\t\tSystem.out.println(n);\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tint n = Integer.parseInt(line);\n\n\t\tif(n==1){\n\t\t\tn=0;\n }\n\t\telse if(n==0){\n\t\t\tn=1;\n }\n\t\tSystem.out.println(n);\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tint n = Integer.parseInt(line);\n\n\t\tif(n==1){\n\t\t\tn=0;\n }\n\t\telse if(n==0){\n\t\t\tn=1;\n }\n\t\tSystem.out.println(n);\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String line = sc.nextLine();", "line", "sc.nextLine()", "sc.nextLine", "sc", "int n = Integer.parseInt(line);", "n", "Integer.parseInt(line)", "Integer.parseInt", "Integer", "line", "if(n==1){\n\t\t\tn=0;\n }\n\t\telse if(n==0){\n\t\t\tn=1;\n }", "n==1", "n", "1", "{\n\t\t\tn=0;\n }", "n=0", "n", "0", "if(n==0){\n\t\t\tn=1;\n }", "n==0", "n", "0", "{\n\t\t\tn=1;\n }", "n=1", "n", "1", "System.out.println(n)", "System.out.println", "System.out", "System", "System.out", "n", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tint n = Integer.parseInt(line);\n\n\t\tif(n==1){\n\t\t\tn=0;\n }\n\t\telse if(n==0){\n\t\t\tn=1;\n }\n\t\tSystem.out.println(n);\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tint n = Integer.parseInt(line);\n\n\t\tif(n==1){\n\t\t\tn=0;\n }\n\t\telse if(n==0){\n\t\t\tn=1;\n }\n\t\tSystem.out.println(n);\n\t}\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String line = sc.nextLine(); int n = Integer.parseInt(line); if(n==1){ n=0; } else if(n==0){ n=1; } System.out.println(n); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 12, 13, 30, 41, 13, 20, 0, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 13, 17, 30, 4, 18, 13, 17, 4, 18, 13, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 54, 11 ], [ 54, 12 ], [ 12, 13 ], [ 54, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 17, 18 ], [ 17, 19 ], [ 16, 20 ], [ 20, 21 ], [ 20, 22 ], [ 16, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 28, 29 ], [ 29, 30 ], [ 16, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 35, 36 ], [ 36, 37 ], [ 37, 38 ], [ 36, 39 ], [ 31, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 41, 44 ], [ 16, 45 ], [ 45, 46 ], [ 46, 47 ], [ 16, 48 ], [ 48, 49 ], [ 49, 50 ], [ 14, 51 ], [ 51, 52 ], [ 0, 53 ], [ 53, 54 ], [ 53, 55 ] ]
[ "import java.io.BufferedOutputStream;\nimport java.io.PrintWriter;\nimport java.util.Scanner;\n\npublic class Main {\n public static PrintWriter out;\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n out = new PrintWriter(new BufferedOutputStream(System.out));\n int x = Integer.parseInt(sc.next());\n if (x == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n sc.close();\n out.close();\n }\n\n}", "import java.io.BufferedOutputStream;", "BufferedOutputStream", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static PrintWriter out;\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n out = new PrintWriter(new BufferedOutputStream(System.out));\n int x = Integer.parseInt(sc.next());\n if (x == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n sc.close();\n out.close();\n }\n\n}", "Main", "public static PrintWriter out;", "out", "public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n out = new PrintWriter(new BufferedOutputStream(System.out));\n int x = Integer.parseInt(sc.next());\n if (x == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n sc.close();\n out.close();\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n out = new PrintWriter(new BufferedOutputStream(System.out));\n int x = Integer.parseInt(sc.next());\n if (x == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n sc.close();\n out.close();\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "out = new PrintWriter(new BufferedOutputStream(System.out))", "out", "new PrintWriter(new BufferedOutputStream(System.out))", "int x = Integer.parseInt(sc.next());", "x", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc", "if (x == 1) {\n out.println(0);\n } else {\n out.println(1);\n }", "x == 1", "x", "1", "{\n out.println(0);\n }", "out.println(0)", "out.println", "out", "0", "{\n out.println(1);\n }", "out.println(1)", "out.println", "out", "1", "sc.close()", "sc.close", "sc", "out.close()", "out.close", "out", "String[] args", "args", "public class Main {\n public static PrintWriter out;\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n out = new PrintWriter(new BufferedOutputStream(System.out));\n int x = Integer.parseInt(sc.next());\n if (x == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n sc.close();\n out.close();\n }\n\n}", "public class Main {\n public static PrintWriter out;\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n out = new PrintWriter(new BufferedOutputStream(System.out));\n int x = Integer.parseInt(sc.next());\n if (x == 1) {\n out.println(0);\n } else {\n out.println(1);\n }\n sc.close();\n out.close();\n }\n\n}", "Main" ]
import java.io.BufferedOutputStream; import java.io.PrintWriter; import java.util.Scanner; public class Main { public static PrintWriter out; public static void main(String[] args) { Scanner sc = new Scanner(System.in); out = new PrintWriter(new BufferedOutputStream(System.out)); int x = Integer.parseInt(sc.next()); if (x == 1) { out.println(0); } else { out.println(1); } sc.close(); out.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 20, 41, 13, 17, 42, 2, 40, 13, 17, 30, 41, 13, 4, 18, 13, 4, 18, 13, 8, 2, 13, 17, 17, 17, 4, 18, 13, 4, 18, 13, 23, 13, 6, 13, 41, 13, 20, 17, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 13, 23, 13, 12, 13, 30, 14, 2, 13, 13, 30, 0, 13, 17, 0, 13, 4, 18, 13, 13, 14, 2, 13, 17, 30, 29, 40, 17, 29, 18, 13, 40, 13, 12, 13, 30, 41, 13, 11, 1, 0, 13, 4, 13, 2, 13, 17, 1, 0, 13, 4, 13, 30, 41, 13, 20, 11, 1, 2, 13, 17, 1, 0, 13, 4, 13, 30, 30, 4, 18, 13, 13, 29, 4, 18, 13, 12, 13, 30, 41, 13, 41, 13, 17, 11, 1, 0, 13, 4, 13, 2, 13, 17, 1, 0, 13, 4, 13, 30, 41, 13, 2, 13, 17, 14, 2, 2, 13, 17, 2, 13, 17, 30, 0, 13, 4, 13, 11, 1, 2, 2, 13, 17, 2, 13, 17, 1, 0, 13, 4, 13, 30, 30, 0, 13, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 29, 8, 13, 40, 13, 13, 12, 13, 30, 41, 13, 41, 13, 17, 11, 1, 0, 13, 4, 13, 2, 13, 17, 1, 0, 13, 4, 13, 30, 41, 13, 2, 13, 17, 14, 2, 2, 13, 17, 2, 13, 17, 30, 0, 13, 4, 13, 11, 1, 2, 2, 13, 17, 2, 13, 17, 1, 0, 13, 4, 13, 30, 30, 0, 13, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 29, 8, 13, 40, 13, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 298, 11 ], [ 298, 12 ], [ 12, 13 ], [ 12, 14 ], [ 298, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 17, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 24, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 29, 35 ], [ 35, 36 ], [ 36, 37 ], [ 35, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 38, 42 ], [ 38, 43 ], [ 17, 44 ], [ 44, 45 ], [ 45, 46 ], [ 17, 47 ], [ 47, 48 ], [ 48, 49 ], [ 15, 50 ], [ 50, 51 ], [ 298, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 52, 58 ], [ 58, 59 ], [ 52, 60 ], [ 60, 61 ], [ 52, 62 ], [ 62, 63 ], [ 52, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 64, 70 ], [ 70, 71 ], [ 52, 72 ], [ 72, 73 ], [ 72, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 75, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 79, 83 ], [ 83, 84 ], [ 83, 85 ], [ 85, 86 ], [ 86, 87 ], [ 85, 88 ], [ 79, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 89, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 74, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 52, 102 ], [ 102, 103 ], [ 102, 104 ], [ 104, 105 ], [ 105, 106 ], [ 104, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 111, 112 ], [ 107, 113 ], [ 113, 114 ], [ 113, 115 ], [ 107, 116 ], [ 116, 117 ], [ 117, 118 ], [ 117, 119 ], [ 119, 120 ], [ 107, 121 ], [ 104, 122 ], [ 122, 123 ], [ 122, 124 ], [ 104, 125 ], [ 125, 126 ], [ 125, 127 ], [ 127, 128 ], [ 127, 129 ], [ 125, 130 ], [ 130, 131 ], [ 131, 132 ], [ 131, 133 ], [ 133, 134 ], [ 125, 135 ], [ 136, 136 ], [ 136, 137 ], [ 137, 138 ], [ 138, 139 ], [ 137, 140 ], [ 104, 141 ], [ 141, 142 ], [ 142, 143 ], [ 143, 144 ], [ 52, 145 ], [ 145, 146 ], [ 145, 147 ], [ 147, 148 ], [ 148, 149 ], [ 147, 150 ], [ 150, 151 ], [ 150, 152 ], [ 147, 153 ], [ 153, 154 ], [ 154, 155 ], [ 155, 156 ], [ 155, 157 ], [ 157, 158 ], [ 153, 159 ], [ 159, 160 ], [ 159, 161 ], [ 153, 162 ], [ 162, 163 ], [ 163, 164 ], [ 163, 165 ], [ 165, 166 ], [ 153, 167 ], [ 147, 168 ], [ 168, 169 ], [ 168, 170 ], [ 170, 171 ], [ 170, 172 ], [ 147, 173 ], [ 173, 174 ], [ 174, 175 ], [ 175, 176 ], [ 175, 177 ], [ 174, 178 ], [ 178, 179 ], [ 178, 180 ], [ 173, 181 ], [ 181, 182 ], [ 182, 183 ], [ 182, 184 ], [ 184, 185 ], [ 147, 186 ], [ 186, 187 ], [ 186, 188 ], [ 188, 189 ], [ 189, 190 ], [ 189, 191 ], [ 188, 192 ], [ 192, 193 ], [ 192, 194 ], [ 186, 195 ], [ 195, 196 ], [ 196, 197 ], [ 196, 198 ], [ 198, 199 ], [ 186, 200 ], [ 201, 201 ], [ 201, 202 ], [ 202, 203 ], [ 202, 204 ], [ 205, 205 ], [ 205, 206 ], [ 206, 207 ], [ 206, 208 ], [ 205, 209 ], [ 209, 210 ], [ 209, 211 ], [ 205, 212 ], [ 212, 213 ], [ 212, 214 ], [ 147, 215 ], [ 215, 216 ], [ 216, 217 ], [ 216, 218 ], [ 218, 219 ], [ 216, 220 ], [ 52, 221 ], [ 221, 222 ], [ 221, 223 ], [ 223, 224 ], [ 224, 225 ], [ 223, 226 ], [ 226, 227 ], [ 226, 228 ], [ 223, 229 ], [ 229, 230 ], [ 230, 231 ], [ 231, 232 ], [ 231, 233 ], [ 233, 234 ], [ 229, 235 ], [ 235, 236 ], [ 235, 237 ], [ 229, 238 ], [ 238, 239 ], [ 239, 240 ], [ 239, 241 ], [ 241, 242 ], [ 229, 243 ], [ 223, 244 ], [ 244, 245 ], [ 244, 246 ], [ 246, 247 ], [ 246, 248 ], [ 223, 249 ], [ 249, 250 ], [ 250, 251 ], [ 251, 252 ], [ 251, 253 ], [ 250, 254 ], [ 254, 255 ], [ 254, 256 ], [ 249, 257 ], [ 257, 258 ], [ 258, 259 ], [ 258, 260 ], [ 260, 261 ], [ 223, 262 ], [ 262, 263 ], [ 262, 264 ], [ 264, 265 ], [ 265, 266 ], [ 265, 267 ], [ 264, 268 ], [ 268, 269 ], [ 268, 270 ], [ 262, 271 ], [ 271, 272 ], [ 272, 273 ], [ 272, 274 ], [ 274, 275 ], [ 262, 276 ], [ 277, 277 ], [ 277, 278 ], [ 278, 279 ], [ 278, 280 ], [ 281, 281 ], [ 281, 282 ], [ 282, 283 ], [ 282, 284 ], [ 281, 285 ], [ 285, 286 ], [ 285, 287 ], [ 281, 288 ], [ 288, 289 ], [ 288, 290 ], [ 223, 291 ], [ 291, 292 ], [ 292, 293 ], [ 292, 294 ], [ 294, 295 ], [ 292, 296 ], [ 0, 297 ], [ 297, 298 ], [ 297, 299 ] ]
[ "//package com.company;\nimport java.util.*;\nimport java.lang.*;\nimport java.io.*;\n//****Use Integer Wrapper Class for Arrays.sort()****\npublic class Main {\n static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out));\n public static void main(String[] Args)throws Exception{\n FastReader scan=new FastReader(System.in);\n int t=1;\n// t=scan.nextInt();\n while(t-->0){\n int x=scan.nextInt();\n out.println(x==0?1:0);\n }\n out.flush();\n out.close();\n }\n static class FastReader {\n\n byte[] buf = new byte[2048];\n int index, total;\n InputStream in;\n\n FastReader(InputStream is) {\n in = is;\n }\n\n int scan() throws IOException {\n if (index >= total) {\n index = 0;\n total = in.read(buf);\n if (total <= 0) {\n return -1;\n }\n }\n return buf[index++];\n }\n\n String next() throws IOException {\n int c;\n for (c = scan(); c <= 32; c = scan()) ;\n StringBuilder sb = new StringBuilder();\n for (; c > 32; c = scan()) {\n sb.append((char) c);\n }\n return sb.toString();\n }\n\n int nextInt() throws IOException {\n int c, val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n long nextLong() throws IOException {\n int c;\n long val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n }\n}", "import java.util.*;", "util.*", "java", "import java.lang.*;", "lang.*", "java", "import java.io.*;", "io.*", "java", "public class Main {\n static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out));\n public static void main(String[] Args)throws Exception{\n FastReader scan=new FastReader(System.in);\n int t=1;\n// t=scan.nextInt();\n while(t-->0){\n int x=scan.nextInt();\n out.println(x==0?1:0);\n }\n out.flush();\n out.close();\n }\n static class FastReader {\n\n byte[] buf = new byte[2048];\n int index, total;\n InputStream in;\n\n FastReader(InputStream is) {\n in = is;\n }\n\n int scan() throws IOException {\n if (index >= total) {\n index = 0;\n total = in.read(buf);\n if (total <= 0) {\n return -1;\n }\n }\n return buf[index++];\n }\n\n String next() throws IOException {\n int c;\n for (c = scan(); c <= 32; c = scan()) ;\n StringBuilder sb = new StringBuilder();\n for (; c > 32; c = scan()) {\n sb.append((char) c);\n }\n return sb.toString();\n }\n\n int nextInt() throws IOException {\n int c, val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n long nextLong() throws IOException {\n int c;\n long val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n }\n}", "Main", "static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out));", "out", "new PrintWriter(new OutputStreamWriter(System.out))", "public static void main(String[] Args)throws Exception{\n FastReader scan=new FastReader(System.in);\n int t=1;\n// t=scan.nextInt();\n while(t-->0){\n int x=scan.nextInt();\n out.println(x==0?1:0);\n }\n out.flush();\n out.close();\n }", "main", "{\n FastReader scan=new FastReader(System.in);\n int t=1;\n// t=scan.nextInt();\n while(t-->0){\n int x=scan.nextInt();\n out.println(x==0?1:0);\n }\n out.flush();\n out.close();\n }", "FastReader scan=new FastReader(System.in);", "scan", "new FastReader(System.in)", "int t=1;", "t", "1", "while(t-->0){\n int x=scan.nextInt();\n out.println(x==0?1:0);\n }", "t-->0", "t--", "t", "0", "{\n int x=scan.nextInt();\n out.println(x==0?1:0);\n }", "int x=scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "out.println(x==0?1:0)", "out.println", "out", "x==0?1:0", "x==0", "x", "0", "1", "0", "out.flush()", "out.flush", "out", "out.close()", "out.close", "out", "String[] Args", "Args", "static class FastReader {\n\n byte[] buf = new byte[2048];\n int index, total;\n InputStream in;\n\n FastReader(InputStream is) {\n in = is;\n }\n\n int scan() throws IOException {\n if (index >= total) {\n index = 0;\n total = in.read(buf);\n if (total <= 0) {\n return -1;\n }\n }\n return buf[index++];\n }\n\n String next() throws IOException {\n int c;\n for (c = scan(); c <= 32; c = scan()) ;\n StringBuilder sb = new StringBuilder();\n for (; c > 32; c = scan()) {\n sb.append((char) c);\n }\n return sb.toString();\n }\n\n int nextInt() throws IOException {\n int c, val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n long nextLong() throws IOException {\n int c;\n long val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n }", "FastReader", "byte[] buf = new byte[2048];", "buf", "new byte[2048]", "2048", "int index", "index", "total;", "total", "InputStream in;", "in", "FastReader(InputStream is) {\n in = is;\n }", "FastReader", "{\n in = is;\n }", "in = is", "in", "is", "InputStream is", "is", "int scan() throws IOException {\n if (index >= total) {\n index = 0;\n total = in.read(buf);\n if (total <= 0) {\n return -1;\n }\n }\n return buf[index++];\n }", "scan", "{\n if (index >= total) {\n index = 0;\n total = in.read(buf);\n if (total <= 0) {\n return -1;\n }\n }\n return buf[index++];\n }", "if (index >= total) {\n index = 0;\n total = in.read(buf);\n if (total <= 0) {\n return -1;\n }\n }", "index >= total", "index", "total", "{\n index = 0;\n total = in.read(buf);\n if (total <= 0) {\n return -1;\n }\n }", "index = 0", "index", "0", "total = in.read(buf)", "total", "in.read(buf)", "in.read", "in", "buf", "if (total <= 0) {\n return -1;\n }", "total <= 0", "total", "0", "{\n return -1;\n }", "return -1;", "-1", "1", "return buf[index++];", "buf[index++]", "buf", "index++", "index", "String next() throws IOException {\n int c;\n for (c = scan(); c <= 32; c = scan()) ;\n StringBuilder sb = new StringBuilder();\n for (; c > 32; c = scan()) {\n sb.append((char) c);\n }\n return sb.toString();\n }", "next", "{\n int c;\n for (c = scan(); c <= 32; c = scan()) ;\n StringBuilder sb = new StringBuilder();\n for (; c > 32; c = scan()) {\n sb.append((char) c);\n }\n return sb.toString();\n }", "int c;", "c", "for (c = scan(); c <= 32; c = scan()) ;", "c = scan();", "c = scan()", "c", "scan()", "scan", "c <= 32", "c", "32", "c = scan()", "c = scan()", "c", "scan()", "scan", ";", "StringBuilder sb = new StringBuilder();", "sb", "new StringBuilder()", "for (; c > 32; c = scan()) {\n sb.append((char) c);\n }", ";", "c > 32", "c", "32", "c = scan()", "c = scan()", "c", "scan()", "scan", "{\n sb.append((char) c);\n }", "{\n sb.append((char) c);\n }", "sb.append((char) c)", "sb.append", "sb", "(char) c", "return sb.toString();", "sb.toString()", "sb.toString", "sb", "int nextInt() throws IOException {\n int c, val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }", "nextInt", "{\n int c, val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }", "int c", "c", "val = 0;", "val", "0", "for (c = scan(); c <= 32; c = scan()) ;", "c = scan();", "c = scan()", "c", "scan()", "scan", "c <= 32", "c", "32", "c = scan()", "c = scan()", "c", "scan()", "scan", ";", "boolean neg = c == '-';", "neg", "c == '-'", "c", "'-'", "if (c == '-' || c == '+') {\n c = scan();\n }", "c == '-' || c == '+'", "c == '-'", "c", "'-'", "c == '+'", "c", "'+'", "{\n c = scan();\n }", "c = scan()", "c", "scan()", "scan", "for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }", ";", "c >= '0' && c <= '9'", "c >= '0'", "c", "'0'", "c <= '9'", "c", "'9'", "c = scan()", "c = scan()", "c", "scan()", "scan", "{\n val = (val << 3) + (val << 1) + (c & 15);\n }", "{\n val = (val << 3) + (val << 1) + (c & 15);\n }", "val = (val << 3) + (val << 1) + (c & 15)", "val", "(val << 3) + (val << 1) + (c & 15)", "(val << 3) + (val << 1) + (c & 15)", "(val << 3)", "val", "3", "(val << 1)", "val", "1", "(c & 15)", "c", "15", "return neg ? -val : val;", "neg ? -val : val", "neg", "-val", "val", "val", "long nextLong() throws IOException {\n int c;\n long val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }", "nextLong", "{\n int c;\n long val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }", "int c;", "c", "long val = 0;", "val", "0", "for (c = scan(); c <= 32; c = scan()) ;", "c = scan();", "c = scan()", "c", "scan()", "scan", "c <= 32", "c", "32", "c = scan()", "c = scan()", "c", "scan()", "scan", ";", "boolean neg = c == '-';", "neg", "c == '-'", "c", "'-'", "if (c == '-' || c == '+') {\n c = scan();\n }", "c == '-' || c == '+'", "c == '-'", "c", "'-'", "c == '+'", "c", "'+'", "{\n c = scan();\n }", "c = scan()", "c", "scan()", "scan", "for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }", ";", "c >= '0' && c <= '9'", "c >= '0'", "c", "'0'", "c <= '9'", "c", "'9'", "c = scan()", "c = scan()", "c", "scan()", "scan", "{\n val = (val << 3) + (val << 1) + (c & 15);\n }", "{\n val = (val << 3) + (val << 1) + (c & 15);\n }", "val = (val << 3) + (val << 1) + (c & 15)", "val", "(val << 3) + (val << 1) + (c & 15)", "(val << 3) + (val << 1) + (c & 15)", "(val << 3)", "val", "3", "(val << 1)", "val", "1", "(c & 15)", "c", "15", "return neg ? -val : val;", "neg ? -val : val", "neg", "-val", "val", "val", "public class Main {\n static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out));\n public static void main(String[] Args)throws Exception{\n FastReader scan=new FastReader(System.in);\n int t=1;\n// t=scan.nextInt();\n while(t-->0){\n int x=scan.nextInt();\n out.println(x==0?1:0);\n }\n out.flush();\n out.close();\n }\n static class FastReader {\n\n byte[] buf = new byte[2048];\n int index, total;\n InputStream in;\n\n FastReader(InputStream is) {\n in = is;\n }\n\n int scan() throws IOException {\n if (index >= total) {\n index = 0;\n total = in.read(buf);\n if (total <= 0) {\n return -1;\n }\n }\n return buf[index++];\n }\n\n String next() throws IOException {\n int c;\n for (c = scan(); c <= 32; c = scan()) ;\n StringBuilder sb = new StringBuilder();\n for (; c > 32; c = scan()) {\n sb.append((char) c);\n }\n return sb.toString();\n }\n\n int nextInt() throws IOException {\n int c, val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n long nextLong() throws IOException {\n int c;\n long val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n }\n}", "public class Main {\n static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out));\n public static void main(String[] Args)throws Exception{\n FastReader scan=new FastReader(System.in);\n int t=1;\n// t=scan.nextInt();\n while(t-->0){\n int x=scan.nextInt();\n out.println(x==0?1:0);\n }\n out.flush();\n out.close();\n }\n static class FastReader {\n\n byte[] buf = new byte[2048];\n int index, total;\n InputStream in;\n\n FastReader(InputStream is) {\n in = is;\n }\n\n int scan() throws IOException {\n if (index >= total) {\n index = 0;\n total = in.read(buf);\n if (total <= 0) {\n return -1;\n }\n }\n return buf[index++];\n }\n\n String next() throws IOException {\n int c;\n for (c = scan(); c <= 32; c = scan()) ;\n StringBuilder sb = new StringBuilder();\n for (; c > 32; c = scan()) {\n sb.append((char) c);\n }\n return sb.toString();\n }\n\n int nextInt() throws IOException {\n int c, val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n long nextLong() throws IOException {\n int c;\n long val = 0;\n for (c = scan(); c <= 32; c = scan()) ;\n boolean neg = c == '-';\n if (c == '-' || c == '+') {\n c = scan();\n }\n for (; c >= '0' && c <= '9'; c = scan()) {\n val = (val << 3) + (val << 1) + (c & 15);\n }\n return neg ? -val : val;\n }\n }\n}", "Main" ]
//package com.company; import java.util.*; import java.lang.*; import java.io.*; //****Use Integer Wrapper Class for Arrays.sort()**** public class Main { static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out)); public static void main(String[] Args)throws Exception{ FastReader scan=new FastReader(System.in); int t=1; // t=scan.nextInt(); while(t-->0){ int x=scan.nextInt(); out.println(x==0?1:0); } out.flush(); out.close(); } static class FastReader { byte[] buf = new byte[2048]; int index, total; InputStream in; FastReader(InputStream is) { in = is; } int scan() throws IOException { if (index >= total) { index = 0; total = in.read(buf); if (total <= 0) { return -1; } } return buf[index++]; } String next() throws IOException { int c; for (c = scan(); c <= 32; c = scan()) ; StringBuilder sb = new StringBuilder(); for (; c > 32; c = scan()) { sb.append((char) c); } return sb.toString(); } int nextInt() throws IOException { int c, val = 0; for (c = scan(); c <= 32; c = scan()) ; boolean neg = c == '-'; if (c == '-' || c == '+') { c = scan(); } for (; c >= '0' && c <= '9'; c = scan()) { val = (val << 3) + (val << 1) + (c & 15); } return neg ? -val : val; } long nextLong() throws IOException { int c; long val = 0; for (c = scan(); c <= 32; c = scan()) ; boolean neg = c == '-'; if (c == '-' || c == '+') { c = scan(); } for (; c >= '0' && c <= '9'; c = scan()) { val = (val << 3) + (val << 1) + (c & 15); } return neg ? -val : val; } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 28, 5 ], [ 28, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 17, 22 ], [ 22, 23 ], [ 22, 24 ], [ 6, 25 ], [ 25, 26 ], [ 0, 27 ], [ 27, 28 ], [ 27, 29 ] ]
[ "\nimport java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int num = scanner.nextInt();\n System.out.println(num ^ 1);\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int num = scanner.nextInt();\n System.out.println(num ^ 1);\n }\n}", "Main", "public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int num = scanner.nextInt();\n System.out.println(num ^ 1);\n }", "main", "{\n Scanner scanner = new Scanner(System.in);\n int num = scanner.nextInt();\n System.out.println(num ^ 1);\n }", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int num = scanner.nextInt();", "num", "scanner.nextInt()", "scanner.nextInt", "scanner", "System.out.println(num ^ 1)", "System.out.println", "System.out", "System", "System.out", "num ^ 1", "num", "1", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int num = scanner.nextInt();\n System.out.println(num ^ 1);\n }\n}", "public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int num = scanner.nextInt();\n System.out.println(num ^ 1);\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int num = scanner.nextInt(); System.out.println(num ^ 1); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 40, 5 ], [ 40, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 21, 26 ], [ 17, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 27, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 31, 36 ], [ 6, 37 ], [ 37, 38 ], [ 0, 39 ], [ 39, 40 ], [ 39, 41 ] ]
[ "import java.util.*;\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tdouble x=sc.nextDouble();\n\t\tif(x==(double)0) System.out.println(1);\n\t\telse if(x==(double)1) System.out.println(0);\n\t}\n\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tdouble x=sc.nextDouble();\n\t\tif(x==(double)0) System.out.println(1);\n\t\telse if(x==(double)1) System.out.println(0);\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tdouble x=sc.nextDouble();\n\t\tif(x==(double)0) System.out.println(1);\n\t\telse if(x==(double)1) System.out.println(0);\n\t}", "main", "{\n\t\tScanner sc=new Scanner(System.in);\n\t\tdouble x=sc.nextDouble();\n\t\tif(x==(double)0) System.out.println(1);\n\t\telse if(x==(double)1) System.out.println(0);\n\t}", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "double x=sc.nextDouble();", "x", "sc.nextDouble()", "sc.nextDouble", "sc", "if(x==(double)0) System.out.println(1);\n\t\telse if(x==(double)1) System.out.println(0);", "x==(double)0", "x", "(double)0", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "if(x==(double)1) System.out.println(0);", "x==(double)1", "x", "(double)1", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tdouble x=sc.nextDouble();\n\t\tif(x==(double)0) System.out.println(1);\n\t\telse if(x==(double)1) System.out.println(0);\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tdouble x=sc.nextDouble();\n\t\tif(x==(double)0) System.out.println(1);\n\t\telse if(x==(double)1) System.out.println(0);\n\t}\n\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); double x=sc.nextDouble(); if(x==(double)0) System.out.println(1); else if(x==(double)1) System.out.println(0); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 13, 17, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 34, 8 ], [ 34, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 21, 22 ], [ 22, 23 ], [ 22, 24 ], [ 20, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 25, 29 ], [ 25, 30 ], [ 9, 31 ], [ 31, 32 ], [ 0, 33 ], [ 33, 34 ], [ 33, 35 ] ]
[ "import java.util.*;\nimport java.io.*;\npublic class Main {\n\tpublic static void main(String[] args) throws IOException{\n\t Scanner sc=new Scanner(System.in);\n\t int x=sc.nextInt();\n\t System.out.println(x==0 ?1:0);\n\t\t\n\t}\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "public class Main {\n\tpublic static void main(String[] args) throws IOException{\n\t Scanner sc=new Scanner(System.in);\n\t int x=sc.nextInt();\n\t System.out.println(x==0 ?1:0);\n\t\t\n\t}\n}", "Main", "public static void main(String[] args) throws IOException{\n\t Scanner sc=new Scanner(System.in);\n\t int x=sc.nextInt();\n\t System.out.println(x==0 ?1:0);\n\t\t\n\t}", "main", "{\n\t Scanner sc=new Scanner(System.in);\n\t int x=sc.nextInt();\n\t System.out.println(x==0 ?1:0);\n\t\t\n\t}", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println(x==0 ?1:0)", "System.out.println", "System.out", "System", "System.out", "x==0 ?1:0", "x==0", "x", "0", "1", "0", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) throws IOException{\n\t Scanner sc=new Scanner(System.in);\n\t int x=sc.nextInt();\n\t System.out.println(x==0 ?1:0);\n\t\t\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) throws IOException{\n\t Scanner sc=new Scanner(System.in);\n\t int x=sc.nextInt();\n\t System.out.println(x==0 ?1:0);\n\t\t\n\t}\n}", "Main" ]
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws IOException{ Scanner sc=new Scanner(System.in); int x=sc.nextInt(); System.out.println(x==0 ?1:0); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 13, 17, 4, 18, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 11, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 20, 23 ], [ 23, 24 ], [ 24, 25 ], [ 11, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 26, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 26, 34 ], [ 34, 35 ], [ 35, 36 ], [ 34, 37 ], [ 11, 38 ], [ 38, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 38, 43 ], [ 9, 44 ], [ 44, 45 ] ]
[ "import java.io.*;\nimport java.util.*;\n\nclass Main\n{\n public static void main(String args[])throws Exception\n {\n BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));\n StringBuilder sb=new StringBuilder();\n int x=Integer.parseInt(bu.readLine());\n if(x==0) sb.append(1);\n else sb.append(0);\n System.out.print(sb);\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "class Main\n{\n public static void main(String args[])throws Exception\n {\n BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));\n StringBuilder sb=new StringBuilder();\n int x=Integer.parseInt(bu.readLine());\n if(x==0) sb.append(1);\n else sb.append(0);\n System.out.print(sb);\n }\n}", "Main", "public static void main(String args[])throws Exception\n {\n BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));\n StringBuilder sb=new StringBuilder();\n int x=Integer.parseInt(bu.readLine());\n if(x==0) sb.append(1);\n else sb.append(0);\n System.out.print(sb);\n }", "main", "{\n BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));\n StringBuilder sb=new StringBuilder();\n int x=Integer.parseInt(bu.readLine());\n if(x==0) sb.append(1);\n else sb.append(0);\n System.out.print(sb);\n }", "BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));", "bu", "new BufferedReader(new InputStreamReader(System.in))", "StringBuilder sb=new StringBuilder();", "sb", "new StringBuilder()", "int x=Integer.parseInt(bu.readLine());", "x", "Integer.parseInt(bu.readLine())", "Integer.parseInt", "Integer", "bu.readLine()", "bu.readLine", "bu", "if(x==0) sb.append(1);\n else sb.append(0);", "x==0", "x", "0", "sb.append(1)", "sb.append", "sb", "1", "sb.append(0)", "sb.append", "sb", "0", "System.out.print(sb)", "System.out.print", "System.out", "System", "System.out", "sb", "String args[]", "args" ]
import java.io.*; import java.util.*; class Main { public static void main(String args[])throws Exception { BufferedReader bu=new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb=new StringBuilder(); int x=Integer.parseInt(bu.readLine()); if(x==0) sb.append(1); else sb.append(0); System.out.print(sb); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 45, 5 ], [ 45, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 25, 30 ], [ 20, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 35, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 36, 41 ], [ 6, 42 ], [ 42, 43 ], [ 0, 44 ], [ 44, 45 ], [ 44, 46 ] ]
[ "import java.util.*;\n\npublic class Main {\n public static void main (String args[])\n {\n \n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n sc.close();\n if(x == 1){\n System.out.println(\"0\");\n }else if (x == 0){\n System.out.println(\"1\");\n }\n } \n}", "import java.util.*;", "util.*", "java", "public class Main {\n public static void main (String args[])\n {\n \n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n sc.close();\n if(x == 1){\n System.out.println(\"0\");\n }else if (x == 0){\n System.out.println(\"1\");\n }\n } \n}", "Main", "public static void main (String args[])\n {\n \n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n sc.close();\n if(x == 1){\n System.out.println(\"0\");\n }else if (x == 0){\n System.out.println(\"1\");\n }\n }", "main", "{\n \n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n sc.close();\n if(x == 1){\n System.out.println(\"0\");\n }else if (x == 0){\n System.out.println(\"1\");\n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "sc.close()", "sc.close", "sc", "if(x == 1){\n System.out.println(\"0\");\n }else if (x == 0){\n System.out.println(\"1\");\n }", "x == 1", "x", "1", "{\n System.out.println(\"0\");\n }", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "if (x == 0){\n System.out.println(\"1\");\n }", "x == 0", "x", "0", "{\n System.out.println(\"1\");\n }", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "String args[]", "args", "public class Main {\n public static void main (String args[])\n {\n \n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n sc.close();\n if(x == 1){\n System.out.println(\"0\");\n }else if (x == 0){\n System.out.println(\"1\");\n }\n } \n}", "public class Main {\n public static void main (String args[])\n {\n \n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n sc.close();\n if(x == 1){\n System.out.println(\"0\");\n }else if (x == 0){\n System.out.println(\"1\");\n }\n } \n}", "Main" ]
import java.util.*; public class Main { public static void main (String args[]) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); sc.close(); if(x == 1){ System.out.println("0"); }else if (x == 0){ System.out.println("1"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 38, 5, 13, 30, 30, 41, 13, 20, 41, 13, 17, 0, 13, 4, 18, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 13, 14 ], [ 13, 15 ], [ 12, 16 ], [ 16, 17 ], [ 17, 18 ], [ 17, 19 ], [ 16, 20 ], [ 20, 21 ], [ 20, 22 ], [ 16, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 28, 29 ], [ 29, 30 ], [ 16, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 35, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 36, 41 ], [ 31, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 9, 49 ], [ 49, 50 ] ]
[ "import java.util.*;\nimport java.io.*;\nclass Main\n{\n\tpublic static void main(String args[]) throws IOException\n\t{\n\t\ttry{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint n=0;\n\t\tn=Integer.parseInt(br.readLine());\n\t\tif(n==1)\n\t\t{\n\t\t\tSystem.out.println(\"0\");\n\t\t}\n\t\telse\n\t\t{\n\t\t\tSystem.out.println(\"1\");\n\t\t}\n\t\t}\n\tcatch(Exception e){}\n}}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "class Main\n{\n\tpublic static void main(String args[]) throws IOException\n\t{\n\t\ttry{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint n=0;\n\t\tn=Integer.parseInt(br.readLine());\n\t\tif(n==1)\n\t\t{\n\t\t\tSystem.out.println(\"0\");\n\t\t}\n\t\telse\n\t\t{\n\t\t\tSystem.out.println(\"1\");\n\t\t}\n\t\t}\n\tcatch(Exception e){}\n}}", "Main", "public static void main(String args[]) throws IOException\n\t{\n\t\ttry{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint n=0;\n\t\tn=Integer.parseInt(br.readLine());\n\t\tif(n==1)\n\t\t{\n\t\t\tSystem.out.println(\"0\");\n\t\t}\n\t\telse\n\t\t{\n\t\t\tSystem.out.println(\"1\");\n\t\t}\n\t\t}\n\tcatch(Exception e){}\n}", "main", "{\n\t\ttry{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint n=0;\n\t\tn=Integer.parseInt(br.readLine());\n\t\tif(n==1)\n\t\t{\n\t\t\tSystem.out.println(\"0\");\n\t\t}\n\t\telse\n\t\t{\n\t\t\tSystem.out.println(\"1\");\n\t\t}\n\t\t}\n\tcatch(Exception e){}\n}", "try{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint n=0;\n\t\tn=Integer.parseInt(br.readLine());\n\t\tif(n==1)\n\t\t{\n\t\t\tSystem.out.println(\"0\");\n\t\t}\n\t\telse\n\t\t{\n\t\t\tSystem.out.println(\"1\");\n\t\t}\n\t\t}\n\tcatch(Exception e){}", "catch(Exception e){}", "Exception e", "{}", "{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint n=0;\n\t\tn=Integer.parseInt(br.readLine());\n\t\tif(n==1)\n\t\t{\n\t\t\tSystem.out.println(\"0\");\n\t\t}\n\t\telse\n\t\t{\n\t\t\tSystem.out.println(\"1\");\n\t\t}\n\t\t}", "BufferedReader br=new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "int n=0;", "n", "0", "n=Integer.parseInt(br.readLine())", "n", "Integer.parseInt(br.readLine())", "Integer.parseInt", "Integer", "br.readLine()", "br.readLine", "br", "if(n==1)\n\t\t{\n\t\t\tSystem.out.println(\"0\");\n\t\t}\n\t\telse\n\t\t{\n\t\t\tSystem.out.println(\"1\");\n\t\t}", "n==1", "n", "1", "{\n\t\t\tSystem.out.println(\"0\");\n\t\t}", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "{\n\t\t\tSystem.out.println(\"1\");\n\t\t}", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "String args[]", "args" ]
import java.util.*; import java.io.*; class Main { public static void main(String args[]) throws IOException { try{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); int n=0; n=Integer.parseInt(br.readLine()); if(n==1) { System.out.println("0"); } else { System.out.println("1"); } } catch(Exception e){} }}
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 40, 5 ], [ 40, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 21, 26 ], [ 17, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 27, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 31, 36 ], [ 6, 37 ], [ 37, 38 ], [ 0, 39 ], [ 39, 40 ], [ 39, 41 ] ]
[ "import java.util.*;\n \npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n if(x==0)System.out.print(\"1\");\n else if(x==1)System.out.print(\"0\");\n \n }\n}", "import java.util.*;", "util.*", "java", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n if(x==0)System.out.print(\"1\");\n else if(x==1)System.out.print(\"0\");\n \n }\n}", "Main", "public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n if(x==0)System.out.print(\"1\");\n else if(x==1)System.out.print(\"0\");\n \n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n if(x==0)System.out.print(\"1\");\n else if(x==1)System.out.print(\"0\");\n \n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "if(x==0)System.out.print(\"1\");\n else if(x==1)System.out.print(\"0\");", "x==0", "x", "0", "System.out.print(\"1\")", "System.out.print", "System.out", "System", "System.out", "\"1\"", "if(x==1)System.out.print(\"0\");", "x==1", "x", "1", "System.out.print(\"0\")", "System.out.print", "System.out", "System", "System.out", "\"0\"", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n if(x==0)System.out.print(\"1\");\n else if(x==1)System.out.print(\"0\");\n \n }\n}", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n if(x==0)System.out.print(\"1\");\n else if(x==1)System.out.print(\"0\");\n \n }\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); if(x==0)System.out.print("1"); else if(x==1)System.out.print("0"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 17, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 6, 35 ], [ 35, 36 ] ]
[ "import java.util.*;\n\nclass Main{\n\tpublic static void main(String args[]){\n \tScanner s=new Scanner(System.in);\n \tint t=s.nextInt();\n \tif(t==0){\n \tSystem.out.println(1);\n }else{\n \tSystem.out.println(0);\n }\n }\n}", "import java.util.*;", "util.*", "java", "class Main{\n\tpublic static void main(String args[]){\n \tScanner s=new Scanner(System.in);\n \tint t=s.nextInt();\n \tif(t==0){\n \tSystem.out.println(1);\n }else{\n \tSystem.out.println(0);\n }\n }\n}", "Main", "public static void main(String args[]){\n \tScanner s=new Scanner(System.in);\n \tint t=s.nextInt();\n \tif(t==0){\n \tSystem.out.println(1);\n }else{\n \tSystem.out.println(0);\n }\n }", "main", "{\n \tScanner s=new Scanner(System.in);\n \tint t=s.nextInt();\n \tif(t==0){\n \tSystem.out.println(1);\n }else{\n \tSystem.out.println(0);\n }\n }", "Scanner s=new Scanner(System.in);", "s", "new Scanner(System.in)", "int t=s.nextInt();", "t", "s.nextInt()", "s.nextInt", "s", "if(t==0){\n \tSystem.out.println(1);\n }else{\n \tSystem.out.println(0);\n }", "t==0", "t", "0", "{\n \tSystem.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "{\n \tSystem.out.println(0);\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String args[]", "args" ]
import java.util.*; class Main{ public static void main(String args[]){ Scanner s=new Scanner(System.in); int t=s.nextInt(); if(t==0){ System.out.println(1); }else{ System.out.println(0); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 2, 17, 4, 13, 4, 13, 2, 13, 17, 23, 13, 12, 13, 30, 4, 18, 18, 13, 13, 13, 23, 13, 12, 13, 30, 4, 18, 18, 13, 13, 13, 23, 13, 12, 13, 30, 38, 5, 13, 30, 4, 18, 13, 29, 17, 30, 29, 4, 13, 4, 18, 13, 12, 13, 30, 38, 5, 13, 30, 4, 18, 13, 29, 40, 17, 30, 29, 4, 18, 13, 12, 13, 30, 38, 5, 13, 30, 4, 18, 13, 29, 17, 30, 29, 4, 18, 13, 12, 13, 30, 41, 13, 20, 42, 17, 30, 38, 5, 13, 30, 4, 18, 13, 30, 41, 13, 4, 18, 13, 14, 2, 2, 2, 13, 40, 17, 2, 13, 17, 2, 13, 17, 30, 3, 4, 18, 13, 13, 29, 4, 18, 13, 12, 13, 30, 29, 4, 13, 4, 13, 12, 13, 30, 29, 4, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 13, 23, 13, 12, 13, 30, 29, 4, 18, 4, 13, 17, 12, 13, 30, 29, 4, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 13, 23, 13, 12, 13, 30, 41, 13, 20, 18, 13, 13, 11, 1, 41, 13, 17, 2, 13, 18, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 13, 18, 13, 13, 29, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 13, 23, 13, 12, 13, 30, 41, 13, 20, 18, 13, 13, 11, 1, 41, 13, 17, 2, 13, 18, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 13, 18, 13, 13, 29, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 13, 23, 13, 12, 13, 30, 29, 20, 23, 13, 12, 13, 30, 29, 4, 18, 13, 17, 23, 13, 12, 13, 30, 29, 4, 18, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 7, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 14, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 23, 25 ], [ 12, 26 ], [ 26, 27 ], [ 7, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 31, 36 ], [ 28, 37 ], [ 37, 38 ], [ 7, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 42, 47 ], [ 39, 48 ], [ 48, 49 ], [ 7, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 56, 60 ], [ 60, 61 ], [ 53, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 7, 69 ], [ 69, 70 ], [ 69, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 75, 79 ], [ 79, 80 ], [ 80, 81 ], [ 72, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 7, 87 ], [ 87, 88 ], [ 87, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 93, 97 ], [ 97, 98 ], [ 90, 99 ], [ 99, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 7, 104 ], [ 104, 105 ], [ 104, 106 ], [ 106, 107 ], [ 107, 108 ], [ 107, 109 ], [ 106, 110 ], [ 110, 111 ], [ 110, 112 ], [ 112, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 116, 117 ], [ 117, 118 ], [ 118, 119 ], [ 113, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 123, 124 ], [ 124, 125 ], [ 120, 126 ], [ 126, 127 ], [ 128, 128 ], [ 128, 129 ], [ 129, 130 ], [ 129, 131 ], [ 131, 132 ], [ 128, 133 ], [ 133, 134 ], [ 133, 135 ], [ 128, 136 ], [ 136, 137 ], [ 136, 138 ], [ 126, 139 ], [ 139, 140 ], [ 120, 141 ], [ 141, 142 ], [ 142, 143 ], [ 141, 144 ], [ 106, 145 ], [ 145, 146 ], [ 146, 147 ], [ 147, 148 ], [ 7, 149 ], [ 149, 150 ], [ 149, 151 ], [ 151, 152 ], [ 152, 153 ], [ 153, 154 ], [ 153, 155 ], [ 155, 156 ], [ 7, 157 ], [ 157, 158 ], [ 157, 159 ], [ 159, 160 ], [ 160, 161 ], [ 161, 162 ], [ 161, 163 ], [ 163, 164 ], [ 7, 165 ], [ 165, 166 ], [ 165, 167 ], [ 167, 168 ], [ 168, 169 ], [ 169, 170 ], [ 170, 171 ], [ 169, 172 ], [ 165, 173 ], [ 173, 174 ], [ 7, 175 ], [ 175, 176 ], [ 175, 177 ], [ 177, 178 ], [ 178, 179 ], [ 179, 180 ], [ 180, 181 ], [ 181, 182 ], [ 179, 183 ], [ 7, 184 ], [ 184, 185 ], [ 184, 186 ], [ 186, 187 ], [ 187, 188 ], [ 188, 189 ], [ 188, 190 ], [ 190, 191 ], [ 7, 192 ], [ 192, 193 ], [ 192, 194 ], [ 194, 195 ], [ 195, 196 ], [ 196, 197 ], [ 197, 198 ], [ 196, 199 ], [ 192, 200 ], [ 200, 201 ], [ 7, 202 ], [ 202, 203 ], [ 202, 204 ], [ 204, 205 ], [ 205, 206 ], [ 205, 207 ], [ 208, 209 ], [ 208, 210 ], [ 204, 211 ], [ 211, 212 ], [ 212, 213 ], [ 213, 214 ], [ 213, 215 ], [ 211, 216 ], [ 216, 217 ], [ 216, 218 ], [ 218, 219 ], [ 218, 220 ], [ 211, 221 ], [ 221, 222 ], [ 222, 223 ], [ 211, 224 ], [ 225, 225 ], [ 225, 226 ], [ 226, 227 ], [ 227, 228 ], [ 227, 229 ], [ 226, 230 ], [ 230, 231 ], [ 230, 232 ], [ 232, 233 ], [ 232, 234 ], [ 204, 235 ], [ 235, 236 ], [ 202, 237 ], [ 237, 238 ], [ 7, 239 ], [ 239, 240 ], [ 239, 241 ], [ 241, 242 ], [ 242, 243 ], [ 243, 244 ], [ 244, 245 ], [ 243, 246 ], [ 239, 247 ], [ 247, 248 ], [ 7, 249 ], [ 249, 250 ], [ 249, 251 ], [ 251, 252 ], [ 252, 253 ], [ 252, 254 ], [ 255, 256 ], [ 255, 257 ], [ 251, 258 ], [ 258, 259 ], [ 259, 260 ], [ 260, 261 ], [ 260, 262 ], [ 258, 263 ], [ 263, 264 ], [ 263, 265 ], [ 265, 266 ], [ 265, 267 ], [ 258, 268 ], [ 268, 269 ], [ 269, 270 ], [ 258, 271 ], [ 272, 272 ], [ 272, 273 ], [ 273, 274 ], [ 274, 275 ], [ 274, 276 ], [ 273, 277 ], [ 277, 278 ], [ 277, 279 ], [ 279, 280 ], [ 279, 281 ], [ 251, 282 ], [ 282, 283 ], [ 249, 284 ], [ 284, 285 ], [ 7, 286 ], [ 286, 287 ], [ 286, 288 ], [ 288, 289 ], [ 289, 290 ], [ 290, 291 ], [ 291, 292 ], [ 290, 293 ], [ 286, 294 ], [ 294, 295 ], [ 7, 296 ], [ 296, 297 ], [ 296, 298 ], [ 298, 299 ], [ 299, 300 ], [ 296, 301 ], [ 301, 302 ], [ 7, 303 ], [ 303, 304 ], [ 303, 305 ], [ 305, 306 ], [ 306, 307 ], [ 307, 308 ], [ 308, 309 ], [ 307, 310 ], [ 303, 311 ], [ 311, 312 ], [ 7, 313 ], [ 313, 314 ], [ 313, 315 ], [ 315, 316 ], [ 316, 317 ], [ 317, 318 ], [ 318, 319 ], [ 313, 320 ], [ 320, 321 ] ]
[ "import java.util.*;\nimport java.io.*;\nclass Main{\n public static void main(String args[])throws IOException{\n int a = 1-readI();\n pl(a+\"\");\n }\n\n static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n public static void pr(String str){\n System.out.print(str);\n }\n public static void pl(String str){\n System.out.println(str);\n }\n public static String read(){\n try{\n return ctos((char)br.read());\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }\n }\n public static char readC(){\n try{\n return (char)br.read();\n }catch(IOException e){\n e.printStackTrace();\n return (char)-1;\n }\n }\n public static String readL(){\n try{\n return br.readLine();\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }\n }\n public static String readS(){\n StringBuilder sb = new StringBuilder();\n while(true){\n try{\n int k = br.read();\n if(k==-1||(char)k==' '||(char)k=='\\n'){break;}\n sb.append((char)k);\n }catch(IOException e){\n e.printStackTrace();\n }\n }\n return sb.toString();\n }\n public static int readI(){\n return stoi(readS());\n }\n public static long readLong(){\n return stol(readS());\n }\n public static long stol(String s){\n return Long.parseLong(s);\n }\n public static String[] readSs(){\n return readL().split(\" \");\n }\n public static int[] readIs(){\n return stoi(readSs());\n }\n public static int stoi(String s){\n return Integer.parseInt(s);\n }\n public static int[] stoi(String s[]){\n int a[]=new int[s.length];\n for(int i=0;i<s.length;i++){\n a[i]=stoi(s[i]);\n }\n return a;\n }\n public static String itos(int i){\n return String.valueOf(i);\n }\n public static String[] itos(int[] a){\n String s[]=new String[a.length];\n for(int i=0;i<a.length;i++){\n s[i]=itos(a[i]);\n }\n return s;\n }\n public static String ctos(char c){\n return String.valueOf(c);\n }\n public static String cstos(char[] c){\n return new String(c);\n }\n public static char stoc(String s){\n return s.charAt(0);\n }\n public static char[] stocs(String s){\n return s.toCharArray();\n }\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "class Main{\n public static void main(String args[])throws IOException{\n int a = 1-readI();\n pl(a+\"\");\n }\n\n static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n public static void pr(String str){\n System.out.print(str);\n }\n public static void pl(String str){\n System.out.println(str);\n }\n public static String read(){\n try{\n return ctos((char)br.read());\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }\n }\n public static char readC(){\n try{\n return (char)br.read();\n }catch(IOException e){\n e.printStackTrace();\n return (char)-1;\n }\n }\n public static String readL(){\n try{\n return br.readLine();\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }\n }\n public static String readS(){\n StringBuilder sb = new StringBuilder();\n while(true){\n try{\n int k = br.read();\n if(k==-1||(char)k==' '||(char)k=='\\n'){break;}\n sb.append((char)k);\n }catch(IOException e){\n e.printStackTrace();\n }\n }\n return sb.toString();\n }\n public static int readI(){\n return stoi(readS());\n }\n public static long readLong(){\n return stol(readS());\n }\n public static long stol(String s){\n return Long.parseLong(s);\n }\n public static String[] readSs(){\n return readL().split(\" \");\n }\n public static int[] readIs(){\n return stoi(readSs());\n }\n public static int stoi(String s){\n return Integer.parseInt(s);\n }\n public static int[] stoi(String s[]){\n int a[]=new int[s.length];\n for(int i=0;i<s.length;i++){\n a[i]=stoi(s[i]);\n }\n return a;\n }\n public static String itos(int i){\n return String.valueOf(i);\n }\n public static String[] itos(int[] a){\n String s[]=new String[a.length];\n for(int i=0;i<a.length;i++){\n s[i]=itos(a[i]);\n }\n return s;\n }\n public static String ctos(char c){\n return String.valueOf(c);\n }\n public static String cstos(char[] c){\n return new String(c);\n }\n public static char stoc(String s){\n return s.charAt(0);\n }\n public static char[] stocs(String s){\n return s.toCharArray();\n }\n}", "Main", "static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "public static void main(String args[])throws IOException{\n int a = 1-readI();\n pl(a+\"\");\n }", "main", "{\n int a = 1-readI();\n pl(a+\"\");\n }", "int a = 1-readI();", "a", "1-readI()", "1", "readI()", "readI", "pl(a+\"\")", "pl", "a+\"\"", "a", "\"\"", "String args[]", "args", "public static void pr(String str){\n System.out.print(str);\n }", "pr", "{\n System.out.print(str);\n }", "System.out.print(str)", "System.out.print", "System.out", "System", "System.out", "str", "String str", "str", "public static void pl(String str){\n System.out.println(str);\n }", "pl", "{\n System.out.println(str);\n }", "System.out.println(str)", "System.out.println", "System.out", "System", "System.out", "str", "String str", "str", "public static String read(){\n try{\n return ctos((char)br.read());\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }\n }", "read", "{\n try{\n return ctos((char)br.read());\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }\n }", "try{\n return ctos((char)br.read());\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }", "catch(IOException e){\n e.printStackTrace();\n return \"\";\n }", "IOException e", "{\n e.printStackTrace();\n return \"\";\n }", "e.printStackTrace()", "e.printStackTrace", "e", "return \"\";", "\"\"", "{\n return ctos((char)br.read());\n }", "return ctos((char)br.read());", "ctos((char)br.read())", "ctos", "(char)br.read()", "br.read", "br", "public static char readC(){\n try{\n return (char)br.read();\n }catch(IOException e){\n e.printStackTrace();\n return (char)-1;\n }\n }", "readC", "{\n try{\n return (char)br.read();\n }catch(IOException e){\n e.printStackTrace();\n return (char)-1;\n }\n }", "try{\n return (char)br.read();\n }catch(IOException e){\n e.printStackTrace();\n return (char)-1;\n }", "catch(IOException e){\n e.printStackTrace();\n return (char)-1;\n }", "IOException e", "{\n e.printStackTrace();\n return (char)-1;\n }", "e.printStackTrace()", "e.printStackTrace", "e", "return (char)-1;", "(char)-1", "1", "{\n return (char)br.read();\n }", "return (char)br.read();", "(char)br.read()", "br.read", "br", "public static String readL(){\n try{\n return br.readLine();\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }\n }", "readL", "{\n try{\n return br.readLine();\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }\n }", "try{\n return br.readLine();\n }catch(IOException e){\n e.printStackTrace();\n return \"\";\n }", "catch(IOException e){\n e.printStackTrace();\n return \"\";\n }", "IOException e", "{\n e.printStackTrace();\n return \"\";\n }", "e.printStackTrace()", "e.printStackTrace", "e", "return \"\";", "\"\"", "{\n return br.readLine();\n }", "return br.readLine();", "br.readLine()", "br.readLine", "br", "public static String readS(){\n StringBuilder sb = new StringBuilder();\n while(true){\n try{\n int k = br.read();\n if(k==-1||(char)k==' '||(char)k=='\\n'){break;}\n sb.append((char)k);\n }catch(IOException e){\n e.printStackTrace();\n }\n }\n return sb.toString();\n }", "readS", "{\n StringBuilder sb = new StringBuilder();\n while(true){\n try{\n int k = br.read();\n if(k==-1||(char)k==' '||(char)k=='\\n'){break;}\n sb.append((char)k);\n }catch(IOException e){\n e.printStackTrace();\n }\n }\n return sb.toString();\n }", "StringBuilder sb = new StringBuilder();", "sb", "new StringBuilder()", "while(true){\n try{\n int k = br.read();\n if(k==-1||(char)k==' '||(char)k=='\\n'){break;}\n sb.append((char)k);\n }catch(IOException e){\n e.printStackTrace();\n }\n }", "true", "{\n try{\n int k = br.read();\n if(k==-1||(char)k==' '||(char)k=='\\n'){break;}\n sb.append((char)k);\n }catch(IOException e){\n e.printStackTrace();\n }\n }", "try{\n int k = br.read();\n if(k==-1||(char)k==' '||(char)k=='\\n'){break;}\n sb.append((char)k);\n }catch(IOException e){\n e.printStackTrace();\n }", "catch(IOException e){\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n int k = br.read();\n if(k==-1||(char)k==' '||(char)k=='\\n'){break;}\n sb.append((char)k);\n }", "int k = br.read();", "k", "br.read()", "br.read", "br", "if(k==-1||(char)k==' '||(char)k=='\\n'){break;}", "k==-1||(char)k==' '||(char)k=='\\n'", "k==-1||(char)k==' '||(char)k=='\\n'", "k==-1", "k", "-1", "1", "(char)k==' '", "(char)k", "' '", "(char)k=='\\n'", "(char)k", "'\\n'", "{break;}", "break;", "sb.append((char)k)", "sb.append", "sb", "(char)k", "return sb.toString();", "sb.toString()", "sb.toString", "sb", "public static int readI(){\n return stoi(readS());\n }", "readI", "{\n return stoi(readS());\n }", "return stoi(readS());", "stoi(readS())", "stoi", "readS()", "readS", "public static long readLong(){\n return stol(readS());\n }", "readLong", "{\n return stol(readS());\n }", "return stol(readS());", "stol(readS())", "stol", "readS()", "readS", "public static long stol(String s){\n return Long.parseLong(s);\n }", "stol", "{\n return Long.parseLong(s);\n }", "return Long.parseLong(s);", "Long.parseLong(s)", "Long.parseLong", "Long", "s", "String s", "s", "public static String[] readSs(){\n return readL().split(\" \");\n }", "readSs", "{\n return readL().split(\" \");\n }", "return readL().split(\" \");", "readL().split(\" \")", "readL().split", "readL()", "readL", "\" \"", "public static int[] readIs(){\n return stoi(readSs());\n }", "readIs", "{\n return stoi(readSs());\n }", "return stoi(readSs());", "stoi(readSs())", "stoi", "readSs()", "readSs", "public static int stoi(String s){\n return Integer.parseInt(s);\n }", "stoi", "{\n return Integer.parseInt(s);\n }", "return Integer.parseInt(s);", "Integer.parseInt(s)", "Integer.parseInt", "Integer", "s", "String s", "s", "public static int[] stoi(String s[]){\n int a[]=new int[s.length];\n for(int i=0;i<s.length;i++){\n a[i]=stoi(s[i]);\n }\n return a;\n }", "stoi", "{\n int a[]=new int[s.length];\n for(int i=0;i<s.length;i++){\n a[i]=stoi(s[i]);\n }\n return a;\n }", "int a[]=new int[s.length];", "a", "new int[s.length]", "s.length", "s", "s.length", "for(int i=0;i<s.length;i++){\n a[i]=stoi(s[i]);\n }", "int i=0;", "int i=0;", "i", "0", "i<s.length", "i", "s.length", "s", "s.length", "i++", "i++", "i", "{\n a[i]=stoi(s[i]);\n }", "{\n a[i]=stoi(s[i]);\n }", "a[i]=stoi(s[i])", "a[i]", "a", "i", "stoi(s[i])", "stoi", "s[i]", "s", "i", "return a;", "a", "String s[]", "s", "public static String itos(int i){\n return String.valueOf(i);\n }", "itos", "{\n return String.valueOf(i);\n }", "return String.valueOf(i);", "String.valueOf(i)", "String.valueOf", "String", "i", "int i", "i", "public static String[] itos(int[] a){\n String s[]=new String[a.length];\n for(int i=0;i<a.length;i++){\n s[i]=itos(a[i]);\n }\n return s;\n }", "itos", "{\n String s[]=new String[a.length];\n for(int i=0;i<a.length;i++){\n s[i]=itos(a[i]);\n }\n return s;\n }", "String s[]=new String[a.length];", "s", "new String[a.length]", "a.length", "a", "a.length", "for(int i=0;i<a.length;i++){\n s[i]=itos(a[i]);\n }", "int i=0;", "int i=0;", "i", "0", "i<a.length", "i", "a.length", "a", "a.length", "i++", "i++", "i", "{\n s[i]=itos(a[i]);\n }", "{\n s[i]=itos(a[i]);\n }", "s[i]=itos(a[i])", "s[i]", "s", "i", "itos(a[i])", "itos", "a[i]", "a", "i", "return s;", "s", "int[] a", "a", "public static String ctos(char c){\n return String.valueOf(c);\n }", "ctos", "{\n return String.valueOf(c);\n }", "return String.valueOf(c);", "String.valueOf(c)", "String.valueOf", "String", "c", "char c", "c", "public static String cstos(char[] c){\n return new String(c);\n }", "cstos", "{\n return new String(c);\n }", "return new String(c);", "new String(c)", "char[] c", "c", "public static char stoc(String s){\n return s.charAt(0);\n }", "stoc", "{\n return s.charAt(0);\n }", "return s.charAt(0);", "s.charAt(0)", "s.charAt", "s", "0", "String s", "s", "public static char[] stocs(String s){\n return s.toCharArray();\n }", "stocs", "{\n return s.toCharArray();\n }", "return s.toCharArray();", "s.toCharArray()", "s.toCharArray", "s", "String s", "s" ]
import java.util.*; import java.io.*; class Main{ public static void main(String args[])throws IOException{ int a = 1-readI(); pl(a+""); } static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); public static void pr(String str){ System.out.print(str); } public static void pl(String str){ System.out.println(str); } public static String read(){ try{ return ctos((char)br.read()); }catch(IOException e){ e.printStackTrace(); return ""; } } public static char readC(){ try{ return (char)br.read(); }catch(IOException e){ e.printStackTrace(); return (char)-1; } } public static String readL(){ try{ return br.readLine(); }catch(IOException e){ e.printStackTrace(); return ""; } } public static String readS(){ StringBuilder sb = new StringBuilder(); while(true){ try{ int k = br.read(); if(k==-1||(char)k==' '||(char)k=='\n'){break;} sb.append((char)k); }catch(IOException e){ e.printStackTrace(); } } return sb.toString(); } public static int readI(){ return stoi(readS()); } public static long readLong(){ return stol(readS()); } public static long stol(String s){ return Long.parseLong(s); } public static String[] readSs(){ return readL().split(" "); } public static int[] readIs(){ return stoi(readSs()); } public static int stoi(String s){ return Integer.parseInt(s); } public static int[] stoi(String s[]){ int a[]=new int[s.length]; for(int i=0;i<s.length;i++){ a[i]=stoi(s[i]); } return a; } public static String itos(int i){ return String.valueOf(i); } public static String[] itos(int[] a){ String s[]=new String[a.length]; for(int i=0;i<a.length;i++){ s[i]=itos(a[i]); } return s; } public static String ctos(char c){ return String.valueOf(c); } public static String cstos(char[] c){ return new String(c); } public static char stoc(String s){ return s.charAt(0); } public static char[] stocs(String s){ return s.toCharArray(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 21, 26 ], [ 17, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 27, 32 ], [ 6, 33 ], [ 33, 34 ] ]
[ "import java.util.Scanner;\n \nclass Main{\n public static void main(String[] args){\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n \n if(x==1) System.out.println(\"0\");\n\telse System.out.println(\"1\");\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n public static void main(String[] args){\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n \n if(x==1) System.out.println(\"0\");\n\telse System.out.println(\"1\");\n }\n}", "Main", "public static void main(String[] args){\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n \n if(x==1) System.out.println(\"0\");\n\telse System.out.println(\"1\");\n }", "main", "{\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n \n if(x==1) System.out.println(\"0\");\n\telse System.out.println(\"1\");\n }", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int x = scanner.nextInt();", "x", "scanner.nextInt()", "scanner.nextInt", "scanner", "if(x==1) System.out.println(\"0\");\n\telse System.out.println(\"1\");", "x==1", "x", "1", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "String[] args", "args" ]
import java.util.Scanner; class Main{ public static void main(String[] args){ Scanner scanner = new Scanner(System.in); int x = scanner.nextInt(); if(x==1) System.out.println("0"); else System.out.println("1"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 2, 13, 17, 2, 13, 17, 30, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 49, 5 ], [ 49, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 18, 22 ], [ 22, 23 ], [ 22, 24 ], [ 17, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 26, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 30, 35 ], [ 25, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 36, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 40, 45 ], [ 6, 46 ], [ 46, 47 ], [ 0, 48 ], [ 48, 49 ], [ 48, 50 ] ]
[ "import java.util.Scanner;\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner input=new Scanner(System.in);\n\t\t int x=input.nextInt();\n\t\t if(x>=0 && x<=1) {\n\t\t\t if(x==0)\n\t\t\t\t System.out.println(1);\n\t\t\t if(x==1)\n\t\t\t\t System.out.println(0);\n\t\t }\n\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner input=new Scanner(System.in);\n\t\t int x=input.nextInt();\n\t\t if(x>=0 && x<=1) {\n\t\t\t if(x==0)\n\t\t\t\t System.out.println(1);\n\t\t\t if(x==1)\n\t\t\t\t System.out.println(0);\n\t\t }\n\n }\n}", "Main", "public static void main(String[] args) {\n\t\tScanner input=new Scanner(System.in);\n\t\t int x=input.nextInt();\n\t\t if(x>=0 && x<=1) {\n\t\t\t if(x==0)\n\t\t\t\t System.out.println(1);\n\t\t\t if(x==1)\n\t\t\t\t System.out.println(0);\n\t\t }\n\n }", "main", "{\n\t\tScanner input=new Scanner(System.in);\n\t\t int x=input.nextInt();\n\t\t if(x>=0 && x<=1) {\n\t\t\t if(x==0)\n\t\t\t\t System.out.println(1);\n\t\t\t if(x==1)\n\t\t\t\t System.out.println(0);\n\t\t }\n\n }", "Scanner input=new Scanner(System.in);", "input", "new Scanner(System.in)", "int x=input.nextInt();", "x", "input.nextInt()", "input.nextInt", "input", "if(x>=0 && x<=1) {\n\t\t\t if(x==0)\n\t\t\t\t System.out.println(1);\n\t\t\t if(x==1)\n\t\t\t\t System.out.println(0);\n\t\t }", "x>=0 && x<=1", "x>=0", "x", "0", "x<=1", "x", "1", "{\n\t\t\t if(x==0)\n\t\t\t\t System.out.println(1);\n\t\t\t if(x==1)\n\t\t\t\t System.out.println(0);\n\t\t }", "if(x==0)\n\t\t\t\t System.out.println(1);", "x==0", "x", "0", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "if(x==1)\n\t\t\t\t System.out.println(0);", "x==1", "x", "1", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner input=new Scanner(System.in);\n\t\t int x=input.nextInt();\n\t\t if(x>=0 && x<=1) {\n\t\t\t if(x==0)\n\t\t\t\t System.out.println(1);\n\t\t\t if(x==1)\n\t\t\t\t System.out.println(0);\n\t\t }\n\n }\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner input=new Scanner(System.in);\n\t\t int x=input.nextInt();\n\t\t if(x>=0 && x<=1) {\n\t\t\t if(x==0)\n\t\t\t\t System.out.println(1);\n\t\t\t if(x==1)\n\t\t\t\t System.out.println(0);\n\t\t }\n\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input=new Scanner(System.in); int x=input.nextInt(); if(x>=0 && x<=1) { if(x==0) System.out.println(1); if(x==1) System.out.println(0); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 42, 5 ], [ 42, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 8, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 28, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 33, 38 ], [ 6, 39 ], [ 39, 40 ], [ 0, 41 ], [ 41, 42 ], [ 41, 43 ] ]
[ "import java.util.*;\npublic class Main {\n\tpublic static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int X = sc.nextInt();\n if (X == 1) {\n System.out.println(\"0\"); \n }\n if (X == 0) {\n System.out.println(\"1\"); \n }\n }\n\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\tpublic static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int X = sc.nextInt();\n if (X == 1) {\n System.out.println(\"0\"); \n }\n if (X == 0) {\n System.out.println(\"1\"); \n }\n }\n\n}", "Main", "public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int X = sc.nextInt();\n if (X == 1) {\n System.out.println(\"0\"); \n }\n if (X == 0) {\n System.out.println(\"1\"); \n }\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int X = sc.nextInt();\n if (X == 1) {\n System.out.println(\"0\"); \n }\n if (X == 0) {\n System.out.println(\"1\"); \n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int X = sc.nextInt();", "X", "sc.nextInt()", "sc.nextInt", "sc", "if (X == 1) {\n System.out.println(\"0\"); \n }", "X == 1", "X", "1", "{\n System.out.println(\"0\"); \n }", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "if (X == 0) {\n System.out.println(\"1\"); \n }", "X == 0", "X", "0", "{\n System.out.println(\"1\"); \n }", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int X = sc.nextInt();\n if (X == 1) {\n System.out.println(\"0\"); \n }\n if (X == 0) {\n System.out.println(\"1\"); \n }\n }\n\n}", "public class Main {\n\tpublic static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int X = sc.nextInt();\n if (X == 1) {\n System.out.println(\"0\"); \n }\n if (X == 0) {\n System.out.println(\"1\"); \n }\n }\n\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int X = sc.nextInt(); if (X == 1) { System.out.println("0"); } if (X == 0) { System.out.println("1"); } } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 12, 13, 30, 14, 2, 2, 13, 13, 17, 30, 29, 13, 30, 29, 4, 13, 13, 2, 13, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 62, 5 ], [ 62, 6 ], [ 6, 7 ], [ 6, 8 ], [ 62, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 11, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 17, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 9, 35 ], [ 35, 36 ], [ 62, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 40, 46 ], [ 46, 47 ], [ 47, 48 ], [ 40, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 51, 54 ], [ 54, 55 ], [ 54, 56 ], [ 37, 57 ], [ 57, 58 ], [ 37, 59 ], [ 59, 60 ], [ 0, 61 ], [ 61, 62 ], [ 61, 63 ] ]
[ "import java.util.*;\n\npublic class Main {\n\tstatic Scanner scan = new Scanner(System.in);\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tint n = scan.nextInt();\n\t\t\n\t\tif(n==1) {\n\t\t\tSystem.out.println(0);\n\t\t}else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\t\n\t}\n\t\n\t\n\tpublic static int gcd(int x,int y) {\n\t\tif(x%y == 0) {\n\t\t\treturn y;\n\t\t}else {\n\t\t\treturn gcd(y,x%y);\n\t\t}\n\t}\n\t\n}\n \n\n\n", "import java.util.*;", "util.*", "java", "public class Main {\n\tstatic Scanner scan = new Scanner(System.in);\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tint n = scan.nextInt();\n\t\t\n\t\tif(n==1) {\n\t\t\tSystem.out.println(0);\n\t\t}else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\t\n\t}\n\t\n\t\n\tpublic static int gcd(int x,int y) {\n\t\tif(x%y == 0) {\n\t\t\treturn y;\n\t\t}else {\n\t\t\treturn gcd(y,x%y);\n\t\t}\n\t}\n\t\n}", "Main", "static Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "public static void main(String[] args) {\n\t\t\n\t\tint n = scan.nextInt();\n\t\t\n\t\tif(n==1) {\n\t\t\tSystem.out.println(0);\n\t\t}else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\t\n\t}", "main", "{\n\t\t\n\t\tint n = scan.nextInt();\n\t\t\n\t\tif(n==1) {\n\t\t\tSystem.out.println(0);\n\t\t}else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\t\n\t}", "int n = scan.nextInt();", "n", "scan.nextInt()", "scan.nextInt", "scan", "if(n==1) {\n\t\t\tSystem.out.println(0);\n\t\t}else {\n\t\t\tSystem.out.println(1);\n\t\t}", "n==1", "n", "1", "{\n\t\t\tSystem.out.println(0);\n\t\t}", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "{\n\t\t\tSystem.out.println(1);\n\t\t}", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "String[] args", "args", "public static int gcd(int x,int y) {\n\t\tif(x%y == 0) {\n\t\t\treturn y;\n\t\t}else {\n\t\t\treturn gcd(y,x%y);\n\t\t}\n\t}", "gcd", "{\n\t\tif(x%y == 0) {\n\t\t\treturn y;\n\t\t}else {\n\t\t\treturn gcd(y,x%y);\n\t\t}\n\t}", "if(x%y == 0) {\n\t\t\treturn y;\n\t\t}else {\n\t\t\treturn gcd(y,x%y);\n\t\t}", "x%y == 0", "x%y", "x", "y", "0", "{\n\t\t\treturn y;\n\t\t}", "return y;", "y", "{\n\t\t\treturn gcd(y,x%y);\n\t\t}", "return gcd(y,x%y);", "gcd(y,x%y)", "gcd", "y", "x%y", "x", "y", "int x", "x", "int y", "y", "public class Main {\n\tstatic Scanner scan = new Scanner(System.in);\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tint n = scan.nextInt();\n\t\t\n\t\tif(n==1) {\n\t\t\tSystem.out.println(0);\n\t\t}else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\t\n\t}\n\t\n\t\n\tpublic static int gcd(int x,int y) {\n\t\tif(x%y == 0) {\n\t\t\treturn y;\n\t\t}else {\n\t\t\treturn gcd(y,x%y);\n\t\t}\n\t}\n\t\n}", "public class Main {\n\tstatic Scanner scan = new Scanner(System.in);\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tint n = scan.nextInt();\n\t\t\n\t\tif(n==1) {\n\t\t\tSystem.out.println(0);\n\t\t}else {\n\t\t\tSystem.out.println(1);\n\t\t}\n\t\t\n\t}\n\t\n\t\n\tpublic static int gcd(int x,int y) {\n\t\tif(x%y == 0) {\n\t\t\treturn y;\n\t\t}else {\n\t\t\treturn gcd(y,x%y);\n\t\t}\n\t}\n\t\n}", "Main" ]
import java.util.*; public class Main { static Scanner scan = new Scanner(System.in); public static void main(String[] args) { int n = scan.nextInt(); if(n==1) { System.out.println(0); }else { System.out.println(1); } } public static int gcd(int x,int y) { if(x%y == 0) { return y; }else { return gcd(y,x%y); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 38, 5 ], [ 38, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 17, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 6, 35 ], [ 35, 36 ], [ 0, 37 ], [ 37, 38 ], [ 37, 39 ] ]
[ "import java.util.Scanner;\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tint x=sc.nextInt();\n\t\tif(x==0) {\n\t\t\tSystem.out.println(\"1\");\n\t\t}else {\n\t\t\tSystem.out.println(\"0\");\n\n\t\t}\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tint x=sc.nextInt();\n\t\tif(x==0) {\n\t\t\tSystem.out.println(\"1\");\n\t\t}else {\n\t\t\tSystem.out.println(\"0\");\n\n\t\t}\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tint x=sc.nextInt();\n\t\tif(x==0) {\n\t\t\tSystem.out.println(\"1\");\n\t\t}else {\n\t\t\tSystem.out.println(\"0\");\n\n\t\t}\n\t}", "main", "{\n\t\tScanner sc=new Scanner(System.in);\n\t\tint x=sc.nextInt();\n\t\tif(x==0) {\n\t\t\tSystem.out.println(\"1\");\n\t\t}else {\n\t\t\tSystem.out.println(\"0\");\n\n\t\t}\n\t}", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "if(x==0) {\n\t\t\tSystem.out.println(\"1\");\n\t\t}else {\n\t\t\tSystem.out.println(\"0\");\n\n\t\t}", "x==0", "x", "0", "{\n\t\t\tSystem.out.println(\"1\");\n\t\t}", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "{\n\t\t\tSystem.out.println(\"0\");\n\n\t\t}", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tint x=sc.nextInt();\n\t\tif(x==0) {\n\t\t\tSystem.out.println(\"1\");\n\t\t}else {\n\t\t\tSystem.out.println(\"0\");\n\n\t\t}\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc=new Scanner(System.in);\n\t\tint x=sc.nextInt();\n\t\tif(x==0) {\n\t\t\tSystem.out.println(\"1\");\n\t\t}else {\n\t\t\tSystem.out.println(\"0\");\n\n\t\t}\n\t}\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int x=sc.nextInt(); if(x==0) { System.out.println("1"); }else { System.out.println("0"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 13, 13, 4, 18, 18, 13, 13, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 30, 29, 17, 14, 2, 13, 17, 30, 29, 17, 29, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 52, 5 ], [ 52, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 19, 21 ], [ 8, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 6, 28 ], [ 28, 29 ], [ 52, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 34, 36 ], [ 33, 37 ], [ 37, 38 ], [ 38, 39 ], [ 33, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 40, 44 ], [ 44, 45 ], [ 45, 46 ], [ 32, 47 ], [ 47, 48 ], [ 30, 49 ], [ 49, 50 ], [ 0, 51 ], [ 51, 52 ], [ 51, 53 ] ]
[ "import java.util.Scanner;\npublic class Main\n{\npublic static void main(String[] args)\n{\n Scanner in = new Scanner(System.in);\n int x = in.nextInt();\n int ans = atCoder(x);\n System.out.println(ans);\n}\n public static int atCoder(int x)\n {\n if (x == 0)\n {\n return 1;\n }\n else if (x == 1) {\n return 0;\n }\n return x;\n }\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main\n{\npublic static void main(String[] args)\n{\n Scanner in = new Scanner(System.in);\n int x = in.nextInt();\n int ans = atCoder(x);\n System.out.println(ans);\n}\n public static int atCoder(int x)\n {\n if (x == 0)\n {\n return 1;\n }\n else if (x == 1) {\n return 0;\n }\n return x;\n }\n\n}", "Main", "public static void main(String[] args)\n{\n Scanner in = new Scanner(System.in);\n int x = in.nextInt();\n int ans = atCoder(x);\n System.out.println(ans);\n}", "main", "{\n Scanner in = new Scanner(System.in);\n int x = in.nextInt();\n int ans = atCoder(x);\n System.out.println(ans);\n}", "Scanner in = new Scanner(System.in);", "in", "new Scanner(System.in)", "int x = in.nextInt();", "x", "in.nextInt()", "in.nextInt", "in", "int ans = atCoder(x);", "ans", "atCoder(x)", "atCoder", "x", "System.out.println(ans)", "System.out.println", "System.out", "System", "System.out", "ans", "String[] args", "args", "public static int atCoder(int x)\n {\n if (x == 0)\n {\n return 1;\n }\n else if (x == 1) {\n return 0;\n }\n return x;\n }", "atCoder", "{\n if (x == 0)\n {\n return 1;\n }\n else if (x == 1) {\n return 0;\n }\n return x;\n }", "if (x == 0)\n {\n return 1;\n }\n else if (x == 1) {\n return 0;\n }", "x == 0", "x", "0", "{\n return 1;\n }", "return 1;", "1", "if (x == 1) {\n return 0;\n }", "x == 1", "x", "1", "{\n return 0;\n }", "return 0;", "0", "return x;", "x", "int x", "x", "public class Main\n{\npublic static void main(String[] args)\n{\n Scanner in = new Scanner(System.in);\n int x = in.nextInt();\n int ans = atCoder(x);\n System.out.println(ans);\n}\n public static int atCoder(int x)\n {\n if (x == 0)\n {\n return 1;\n }\n else if (x == 1) {\n return 0;\n }\n return x;\n }\n\n}", "public class Main\n{\npublic static void main(String[] args)\n{\n Scanner in = new Scanner(System.in);\n int x = in.nextInt();\n int ans = atCoder(x);\n System.out.println(ans);\n}\n public static int atCoder(int x)\n {\n if (x == 0)\n {\n return 1;\n }\n else if (x == 1) {\n return 0;\n }\n return x;\n }\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int x = in.nextInt(); int ans = atCoder(x); System.out.println(ans); } public static int atCoder(int x) { if (x == 0) { return 1; } else if (x == 1) { return 0; } return x; } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 50, 14 ], [ 50, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 23, 26 ], [ 26, 27 ], [ 27, 28 ], [ 17, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 29, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 34, 39 ], [ 29, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 41, 46 ], [ 15, 47 ], [ 47, 48 ], [ 0, 49 ], [ 49, 50 ], [ 49, 51 ] ]
[ "import java.util.List;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sn = new Scanner(System.in);\n int x = Integer.parseInt(sn.next());\n if (x == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }\n}", "import java.util.List;", "List", "java.util", "import java.util.ArrayList;", "ArrayList", "java.util", "import java.util.Collections;", "Collections", "java.util", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n Scanner sn = new Scanner(System.in);\n int x = Integer.parseInt(sn.next());\n if (x == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }\n}", "Main", "public static void main(String[] args) {\n Scanner sn = new Scanner(System.in);\n int x = Integer.parseInt(sn.next());\n if (x == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }", "main", "{\n Scanner sn = new Scanner(System.in);\n int x = Integer.parseInt(sn.next());\n if (x == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }", "Scanner sn = new Scanner(System.in);", "sn", "new Scanner(System.in)", "int x = Integer.parseInt(sn.next());", "x", "Integer.parseInt(sn.next())", "Integer.parseInt", "Integer", "sn.next()", "sn.next", "sn", "if (x == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }", "x == 0", "x", "0", "{\n System.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "{\n System.out.println(0);\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner sn = new Scanner(System.in);\n int x = Integer.parseInt(sn.next());\n if (x == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }\n}", "public class Main {\n public static void main(String[] args) {\n Scanner sn = new Scanner(System.in);\n int x = Integer.parseInt(sn.next());\n if (x == 0) {\n System.out.println(1);\n } else {\n System.out.println(0);\n }\n }\n}", "Main" ]
import java.util.List; import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sn = new Scanner(System.in); int x = Integer.parseInt(sn.next()); if (x == 0) { System.out.println(1); } else { System.out.println(0); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 38, 30, 41, 13, 20, 4, 18, 18, 13, 13, 8, 2, 4, 18, 13, 17, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 30, 5 ], [ 30, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 10, 11 ], [ 11, 12 ], [ 11, 13 ], [ 10, 14 ], [ 14, 15 ], [ 15, 16 ], [ 16, 17 ], [ 16, 18 ], [ 14, 19 ], [ 19, 20 ], [ 20, 21 ], [ 21, 22 ], [ 22, 23 ], [ 20, 24 ], [ 19, 25 ], [ 19, 26 ], [ 6, 27 ], [ 27, 28 ], [ 0, 29 ], [ 29, 30 ], [ 29, 31 ] ]
[ "import java.util.*;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n try (Scanner s = new Scanner(System.in)) {\n System.out.println(s.nextInt() == 0 ? 1 : 0);\n }\n }\n}", "import java.util.*;", "util.*", "java", "public class Main {\n public static void main(String[] args) throws Exception {\n try (Scanner s = new Scanner(System.in)) {\n System.out.println(s.nextInt() == 0 ? 1 : 0);\n }\n }\n}", "Main", "public static void main(String[] args) throws Exception {\n try (Scanner s = new Scanner(System.in)) {\n System.out.println(s.nextInt() == 0 ? 1 : 0);\n }\n }", "main", "{\n try (Scanner s = new Scanner(System.in)) {\n System.out.println(s.nextInt() == 0 ? 1 : 0);\n }\n }", "try (Scanner s = new Scanner(System.in)) {\n System.out.println(s.nextInt() == 0 ? 1 : 0);\n }", "{\n System.out.println(s.nextInt() == 0 ? 1 : 0);\n }", "Scanner s = new Scanner(System.in)", "Scanner s = new Scanner(System.in)", "new Scanner(System.in)", "System.out.println(s.nextInt() == 0 ? 1 : 0)", "System.out.println", "System.out", "System", "System.out", "s.nextInt() == 0 ? 1 : 0", "s.nextInt() == 0", "s.nextInt()", "s.nextInt", "s", "0", "1", "0", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws Exception {\n try (Scanner s = new Scanner(System.in)) {\n System.out.println(s.nextInt() == 0 ? 1 : 0);\n }\n }\n}", "public class Main {\n public static void main(String[] args) throws Exception {\n try (Scanner s = new Scanner(System.in)) {\n System.out.println(s.nextInt() == 0 ? 1 : 0);\n }\n }\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) throws Exception { try (Scanner s = new Scanner(System.in)) { System.out.println(s.nextInt() == 0 ? 1 : 0); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 13, 17, 4, 18, 13, 17, 12, 13, 30, 0, 13, 20, 4, 13, 4, 18, 13, 23, 13, 6, 13, 41, 13, 17, 41, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 18, 13, 13, 0, 13, 20, 13, 0, 13, 0, 13, 17, 12, 13, 30, 0, 13, 20, 0, 13, 20, 13, 0, 13, 0, 13, 17, 23, 13, 12, 13, 30, 14, 2, 13, 13, 30, 38, 5, 13, 30, 37, 20, 30, 0, 13, 4, 18, 13, 13, 0, 13, 17, 14, 2, 13, 17, 29, 40, 17, 29, 18, 13, 40, 13, 12, 13, 30, 29, 40, 2, 2, 13, 17, 2, 13, 17, 23, 13, 12, 13, 30, 41, 13, 42, 2, 2, 0, 13, 4, 13, 40, 17, 4, 13, 13, 29, 13, 12, 13, 30, 29, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 13, 42, 40, 4, 13, 13, 30, 4, 18, 13, 13, 0, 13, 4, 13, 29, 4, 18, 13, 12, 13, 30, 41, 13, 17, 41, 13, 17, 41, 13, 42, 2, 2, 0, 13, 4, 13, 40, 17, 40, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 0, 13, 4, 13, 42, 2, 2, 13, 17, 2, 13, 17, 30, 0, 13, 2, 2, 13, 17, 2, 13, 17, 0, 13, 4, 13, 29, 8, 13, 40, 13, 13, 12, 13, 30, 41, 13, 17, 41, 13, 17, 41, 13, 42, 2, 2, 0, 13, 4, 13, 40, 17, 40, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 0, 13, 4, 13, 42, 2, 2, 13, 17, 2, 13, 17, 30, 0, 13, 2, 2, 13, 17, 2, 13, 17, 0, 13, 4, 13, 29, 8, 13, 40, 13, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 18, 13, 13, 13, 4, 13, 29, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 18, 13, 13, 13, 4, 13, 29, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 18, 13, 13, 13, 4, 13, 29, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 18, 13, 13, 13, 4, 13, 29, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 18, 13, 13, 13, 4, 13, 29, 13, 23, 13, 23, 13, 12, 13, 30, 4, 18, 18, 13, 13, 4, 18, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 752, 20 ], [ 752, 21 ], [ 21, 22 ], [ 752, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 25, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 25, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 34, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 34, 42 ], [ 42, 43 ], [ 43, 44 ], [ 42, 45 ], [ 752, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 48, 52 ], [ 52, 53 ], [ 48, 54 ], [ 54, 55 ], [ 55, 56 ], [ 46, 57 ], [ 57, 58 ], [ 752, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 61, 63 ], [ 59, 64 ], [ 64, 65 ], [ 59, 66 ], [ 66, 67 ], [ 59, 68 ], [ 68, 69 ], [ 59, 70 ], [ 70, 71 ], [ 59, 72 ], [ 72, 73 ], [ 72, 74 ], [ 74, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 77, 79 ], [ 74, 80 ], [ 80, 81 ], [ 80, 82 ], [ 74, 84 ], [ 84, 85 ], [ 84, 86 ], [ 86, 87 ], [ 86, 88 ], [ 59, 89 ], [ 89, 90 ], [ 89, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 91, 95 ], [ 95, 96 ], [ 95, 97 ], [ 91, 99 ], [ 99, 100 ], [ 99, 101 ], [ 101, 102 ], [ 101, 103 ], [ 89, 104 ], [ 104, 105 ], [ 59, 106 ], [ 106, 107 ], [ 106, 108 ], [ 108, 109 ], [ 109, 110 ], [ 110, 111 ], [ 110, 112 ], [ 109, 113 ], [ 113, 114 ], [ 114, 115 ], [ 115, 116 ], [ 115, 117 ], [ 117, 118 ], [ 118, 119 ], [ 114, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 123, 124 ], [ 124, 125 ], [ 123, 126 ], [ 113, 127 ], [ 127, 128 ], [ 127, 129 ], [ 108, 130 ], [ 130, 131 ], [ 131, 132 ], [ 131, 133 ], [ 130, 134 ], [ 134, 135 ], [ 135, 136 ], [ 108, 137 ], [ 137, 138 ], [ 138, 139 ], [ 138, 140 ], [ 140, 141 ], [ 59, 142 ], [ 142, 143 ], [ 142, 144 ], [ 144, 145 ], [ 145, 146 ], [ 146, 147 ], [ 147, 148 ], [ 148, 149 ], [ 148, 150 ], [ 147, 151 ], [ 151, 152 ], [ 151, 153 ], [ 142, 154 ], [ 154, 155 ], [ 59, 156 ], [ 156, 157 ], [ 156, 158 ], [ 158, 159 ], [ 159, 160 ], [ 158, 161 ], [ 161, 162 ], [ 162, 163 ], [ 163, 164 ], [ 164, 165 ], [ 164, 166 ], [ 166, 167 ], [ 163, 168 ], [ 168, 169 ], [ 162, 170 ], [ 170, 171 ], [ 170, 172 ], [ 158, 173 ], [ 173, 174 ], [ 59, 175 ], [ 175, 176 ], [ 175, 177 ], [ 177, 178 ], [ 178, 179 ], [ 179, 180 ], [ 59, 181 ], [ 181, 182 ], [ 181, 183 ], [ 183, 184 ], [ 184, 185 ], [ 185, 186 ], [ 186, 187 ], [ 185, 188 ], [ 188, 189 ], [ 59, 190 ], [ 190, 191 ], [ 190, 192 ], [ 192, 193 ], [ 193, 194 ], [ 193, 195 ], [ 192, 196 ], [ 196, 197 ], [ 196, 198 ], [ 198, 199 ], [ 192, 200 ], [ 200, 201 ], [ 201, 202 ], [ 202, 203 ], [ 202, 204 ], [ 200, 205 ], [ 205, 206 ], [ 206, 207 ], [ 207, 208 ], [ 206, 209 ], [ 205, 210 ], [ 210, 211 ], [ 210, 212 ], [ 212, 213 ], [ 192, 214 ], [ 214, 215 ], [ 215, 216 ], [ 216, 217 ], [ 59, 218 ], [ 218, 219 ], [ 218, 220 ], [ 220, 221 ], [ 221, 222 ], [ 221, 223 ], [ 220, 224 ], [ 224, 225 ], [ 224, 226 ], [ 220, 227 ], [ 227, 228 ], [ 220, 229 ], [ 229, 230 ], [ 230, 231 ], [ 231, 232 ], [ 232, 233 ], [ 232, 234 ], [ 234, 235 ], [ 231, 236 ], [ 236, 237 ], [ 230, 238 ], [ 238, 239 ], [ 239, 240 ], [ 240, 241 ], [ 241, 242 ], [ 241, 243 ], [ 240, 244 ], [ 244, 245 ], [ 244, 246 ], [ 239, 247 ], [ 247, 248 ], [ 247, 249 ], [ 220, 250 ], [ 250, 251 ], [ 251, 252 ], [ 251, 253 ], [ 250, 254 ], [ 254, 255 ], [ 255, 256 ], [ 255, 257 ], [ 254, 258 ], [ 258, 259 ], [ 258, 260 ], [ 260, 261 ], [ 220, 262 ], [ 262, 263 ], [ 263, 264 ], [ 264, 265 ], [ 264, 266 ], [ 263, 267 ], [ 267, 268 ], [ 267, 269 ], [ 262, 270 ], [ 270, 271 ], [ 271, 272 ], [ 271, 273 ], [ 273, 274 ], [ 274, 275 ], [ 274, 276 ], [ 273, 277 ], [ 277, 278 ], [ 277, 279 ], [ 270, 280 ], [ 280, 281 ], [ 280, 282 ], [ 282, 283 ], [ 220, 284 ], [ 284, 285 ], [ 285, 286 ], [ 285, 287 ], [ 287, 288 ], [ 285, 289 ], [ 59, 290 ], [ 290, 291 ], [ 290, 292 ], [ 292, 293 ], [ 293, 294 ], [ 293, 295 ], [ 292, 296 ], [ 296, 297 ], [ 296, 298 ], [ 292, 299 ], [ 299, 300 ], [ 292, 301 ], [ 301, 302 ], [ 302, 303 ], [ 303, 304 ], [ 304, 305 ], [ 304, 306 ], [ 306, 307 ], [ 303, 308 ], [ 308, 309 ], [ 302, 310 ], [ 310, 311 ], [ 311, 312 ], [ 312, 313 ], [ 313, 314 ], [ 313, 315 ], [ 312, 316 ], [ 316, 317 ], [ 316, 318 ], [ 311, 319 ], [ 319, 320 ], [ 319, 321 ], [ 292, 322 ], [ 322, 323 ], [ 323, 324 ], [ 323, 325 ], [ 322, 326 ], [ 326, 327 ], [ 327, 328 ], [ 327, 329 ], [ 326, 330 ], [ 330, 331 ], [ 330, 332 ], [ 332, 333 ], [ 292, 334 ], [ 334, 335 ], [ 335, 336 ], [ 336, 337 ], [ 336, 338 ], [ 335, 339 ], [ 339, 340 ], [ 339, 341 ], [ 334, 342 ], [ 342, 343 ], [ 343, 344 ], [ 343, 345 ], [ 345, 346 ], [ 346, 347 ], [ 346, 348 ], [ 345, 349 ], [ 349, 350 ], [ 349, 351 ], [ 342, 352 ], [ 352, 353 ], [ 352, 354 ], [ 354, 355 ], [ 292, 356 ], [ 356, 357 ], [ 357, 358 ], [ 357, 359 ], [ 359, 360 ], [ 357, 361 ], [ 59, 362 ], [ 362, 363 ], [ 362, 364 ], [ 364, 365 ], [ 365, 366 ], [ 365, 367 ], [ 364, 369 ], [ 369, 370 ], [ 370, 371 ], [ 371, 372 ], [ 371, 373 ], [ 369, 374 ], [ 374, 375 ], [ 374, 376 ], [ 369, 377 ], [ 377, 378 ], [ 378, 379 ], [ 369, 380 ], [ 380, 381 ], [ 381, 382 ], [ 382, 383 ], [ 382, 384 ], [ 381, 385 ], [ 385, 386 ], [ 364, 387 ], [ 387, 388 ], [ 362, 389 ], [ 389, 390 ], [ 59, 391 ], [ 391, 392 ], [ 391, 393 ], [ 393, 394 ], [ 394, 395 ], [ 394, 396 ], [ 393, 398 ], [ 398, 399 ], [ 399, 400 ], [ 400, 401 ], [ 400, 402 ], [ 398, 403 ], [ 403, 404 ], [ 403, 405 ], [ 398, 406 ], [ 406, 407 ], [ 407, 408 ], [ 398, 409 ], [ 409, 410 ], [ 410, 411 ], [ 411, 412 ], [ 411, 413 ], [ 410, 414 ], [ 414, 415 ], [ 393, 416 ], [ 416, 417 ], [ 391, 418 ], [ 418, 419 ], [ 59, 420 ], [ 420, 421 ], [ 420, 422 ], [ 422, 423 ], [ 423, 424 ], [ 423, 425 ], [ 422, 427 ], [ 427, 428 ], [ 428, 429 ], [ 429, 430 ], [ 429, 431 ], [ 427, 432 ], [ 432, 433 ], [ 432, 434 ], [ 427, 435 ], [ 435, 436 ], [ 436, 437 ], [ 427, 438 ], [ 438, 439 ], [ 439, 440 ], [ 440, 441 ], [ 440, 442 ], [ 439, 443 ], [ 443, 444 ], [ 422, 445 ], [ 445, 446 ], [ 420, 447 ], [ 447, 448 ], [ 59, 449 ], [ 449, 450 ], [ 449, 451 ], [ 451, 452 ], [ 452, 453 ], [ 452, 454 ], [ 451, 456 ], [ 456, 457 ], [ 457, 458 ], [ 458, 459 ], [ 458, 460 ], [ 456, 461 ], [ 461, 462 ], [ 461, 463 ], [ 456, 464 ], [ 464, 465 ], [ 465, 466 ], [ 456, 467 ], [ 467, 468 ], [ 468, 469 ], [ 469, 470 ], [ 469, 471 ], [ 468, 472 ], [ 472, 473 ], [ 451, 474 ], [ 474, 475 ], [ 449, 476 ], [ 476, 477 ], [ 59, 478 ], [ 478, 479 ], [ 478, 480 ], [ 480, 481 ], [ 481, 482 ], [ 481, 483 ], [ 480, 485 ], [ 485, 486 ], [ 486, 487 ], [ 487, 488 ], [ 487, 489 ], [ 485, 490 ], [ 490, 491 ], [ 490, 492 ], [ 485, 493 ], [ 493, 494 ], [ 494, 495 ], [ 485, 496 ], [ 496, 497 ], [ 497, 498 ], [ 498, 499 ], [ 498, 500 ], [ 497, 501 ], [ 501, 502 ], [ 480, 503 ], [ 503, 504 ], [ 478, 505 ], [ 505, 506 ], [ 59, 507 ], [ 507, 508 ], [ 507, 509 ], [ 509, 510 ], [ 510, 511 ], [ 510, 512 ], [ 509, 515 ], [ 515, 516 ], [ 516, 517 ], [ 517, 518 ], [ 517, 519 ], [ 515, 520 ], [ 520, 521 ], [ 520, 522 ], [ 515, 523 ], [ 523, 524 ], [ 524, 525 ], [ 515, 526 ], [ 526, 527 ], [ 527, 528 ], [ 528, 529 ], [ 529, 530 ], [ 529, 531 ], [ 527, 532 ], [ 532, 533 ], [ 532, 534 ], [ 527, 535 ], [ 535, 536 ], [ 536, 537 ], [ 527, 538 ], [ 538, 539 ], [ 539, 540 ], [ 540, 541 ], [ 541, 542 ], [ 541, 543 ], [ 540, 544 ], [ 539, 545 ], [ 545, 546 ], [ 509, 547 ], [ 547, 548 ], [ 507, 549 ], [ 549, 550 ], [ 507, 551 ], [ 551, 552 ], [ 59, 553 ], [ 553, 554 ], [ 553, 555 ], [ 555, 556 ], [ 556, 557 ], [ 556, 558 ], [ 555, 561 ], [ 561, 562 ], [ 562, 563 ], [ 563, 564 ], [ 563, 565 ], [ 561, 566 ], [ 566, 567 ], [ 566, 568 ], [ 561, 569 ], [ 569, 570 ], [ 570, 571 ], [ 561, 572 ], [ 572, 573 ], [ 573, 574 ], [ 574, 575 ], [ 575, 576 ], [ 575, 577 ], [ 573, 578 ], [ 578, 579 ], [ 578, 580 ], [ 573, 581 ], [ 581, 582 ], [ 582, 583 ], [ 573, 584 ], [ 584, 585 ], [ 585, 586 ], [ 586, 587 ], [ 587, 588 ], [ 587, 589 ], [ 586, 590 ], [ 585, 591 ], [ 591, 592 ], [ 555, 593 ], [ 593, 594 ], [ 553, 595 ], [ 595, 596 ], [ 553, 597 ], [ 597, 598 ], [ 59, 599 ], [ 599, 600 ], [ 599, 601 ], [ 601, 602 ], [ 602, 603 ], [ 602, 604 ], [ 601, 607 ], [ 607, 608 ], [ 608, 609 ], [ 609, 610 ], [ 609, 611 ], [ 607, 612 ], [ 612, 613 ], [ 612, 614 ], [ 607, 615 ], [ 615, 616 ], [ 616, 617 ], [ 607, 618 ], [ 618, 619 ], [ 619, 620 ], [ 620, 621 ], [ 621, 622 ], [ 621, 623 ], [ 619, 624 ], [ 624, 625 ], [ 624, 626 ], [ 619, 627 ], [ 627, 628 ], [ 628, 629 ], [ 619, 630 ], [ 630, 631 ], [ 631, 632 ], [ 632, 633 ], [ 633, 634 ], [ 633, 635 ], [ 632, 636 ], [ 631, 637 ], [ 637, 638 ], [ 601, 639 ], [ 639, 640 ], [ 599, 641 ], [ 641, 642 ], [ 599, 643 ], [ 643, 644 ], [ 59, 645 ], [ 645, 646 ], [ 645, 647 ], [ 647, 648 ], [ 648, 649 ], [ 648, 650 ], [ 647, 653 ], [ 653, 654 ], [ 654, 655 ], [ 655, 656 ], [ 655, 657 ], [ 653, 658 ], [ 658, 659 ], [ 658, 660 ], [ 653, 661 ], [ 661, 662 ], [ 662, 663 ], [ 653, 664 ], [ 664, 665 ], [ 665, 666 ], [ 666, 667 ], [ 667, 668 ], [ 667, 669 ], [ 665, 670 ], [ 670, 671 ], [ 670, 672 ], [ 665, 673 ], [ 673, 674 ], [ 674, 675 ], [ 665, 676 ], [ 676, 677 ], [ 677, 678 ], [ 678, 679 ], [ 679, 680 ], [ 679, 681 ], [ 678, 682 ], [ 677, 683 ], [ 683, 684 ], [ 647, 685 ], [ 685, 686 ], [ 645, 687 ], [ 687, 688 ], [ 645, 689 ], [ 689, 690 ], [ 59, 691 ], [ 691, 692 ], [ 691, 693 ], [ 693, 694 ], [ 694, 695 ], [ 694, 696 ], [ 693, 699 ], [ 699, 700 ], [ 700, 701 ], [ 701, 702 ], [ 701, 703 ], [ 699, 704 ], [ 704, 705 ], [ 704, 706 ], [ 699, 707 ], [ 707, 708 ], [ 708, 709 ], [ 699, 710 ], [ 710, 711 ], [ 711, 712 ], [ 712, 713 ], [ 713, 714 ], [ 713, 715 ], [ 711, 716 ], [ 716, 717 ], [ 716, 718 ], [ 711, 719 ], [ 719, 720 ], [ 720, 721 ], [ 711, 722 ], [ 722, 723 ], [ 723, 724 ], [ 724, 725 ], [ 725, 726 ], [ 725, 727 ], [ 724, 728 ], [ 723, 729 ], [ 729, 730 ], [ 693, 731 ], [ 731, 732 ], [ 691, 733 ], [ 733, 734 ], [ 691, 735 ], [ 735, 736 ], [ 59, 737 ], [ 737, 738 ], [ 737, 739 ], [ 739, 740 ], [ 740, 741 ], [ 741, 742 ], [ 742, 743 ], [ 742, 744 ], [ 740, 745 ], [ 745, 746 ], [ 746, 747 ], [ 745, 748 ], [ 737, 749 ], [ 749, 750 ], [ 0, 751 ], [ 751, 752 ], [ 751, 753 ] ]
[ "// package beginner00178;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.Arrays;\nimport java.util.InputMismatchException;\n\npublic class Main {\n\tprivate static PrintWriter out;\n\n\tpublic static void solve() {\n\t\tIn in = new In();\n\t\t// BEFORE SUBMISSION :: Change class name to Main and comment out package name\n\t\t// !!!\n\t\tint x = in.ni();\n\t\tif (x == 0)\n\t\t\tout.println(1);\n\t\telse \n\t\t\tout.println(0);\n\n\t}\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// long start = System.nanoTime();\n\t\tout = new PrintWriter(System.out);\n\t\tsolve();\n\t\tout.flush();\n\t\t// System.out.println(\"Elapsed: \" + (System.nanoTime() - start) / 1000000 +\n\t\t// \"ns\");\n\t}\n\n\t@SuppressWarnings(\"unused\")\n\tprivate static class In {\n\t\tfinal private static int BUFFER_SIZE = 1024;\n\t\tprivate byte[] buf;\n\t\tprivate InputStream is;\n\t\tprivate int buflen;\n\t\tprivate int bufptr;\n\n\t\tpublic In() {\n\t\t\tis = System.in;\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic In(String input) {\n\t\t\tis = new ByteArrayInputStream(input.getBytes());\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic int readByte() {\n\t\t\tif (bufptr >= buflen) {\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tbufptr = 0;\n\t\t\t}\n\t\t\tif (buflen <= 0)\n\t\t\t\treturn -1;\n\t\t\treturn buf[bufptr++];\n\t\t}\n\n\t\tpublic boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n\n\t\tpublic int skip() {\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && isSpaceChar(b))\n\t\t\t\t;\n\t\t\treturn b;\n\t\t}\n\n\t\t/* Next character */\n\t\tpublic char nc() {\n\t\t\treturn (char) skip();\n\t\t}\n\n\t\t/* Next double */\n\t\tpublic double nd() {\n\t\t\treturn Double.parseDouble(ns());\n\t\t}\n\n\t\t/* Next string */\n\t\tpublic String ns() {\n\t\t\tfinal StringBuilder sb = new StringBuilder();\n\t\t\tint b = skip();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\n\t\t/* Next integer */\n\t\tpublic int ni() {\n\t\t\tboolean minus = false;\n\t\t\tint num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next long */\n\t\tpublic long nl() {\n\t\t\tboolean minus = false;\n\t\t\tlong num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next integer 1D array */\n\t\tpublic int[] nia(int n) {\n\t\t\tfinal int[] arr = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long 1D array */\n\t\tpublic long[] nla(int n) {\n\t\t\tfinal long[] arr = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string 1D array */\n\t\tpublic String[] nsa(int n) {\n\t\t\tfinal String[] arr = new String[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char 1D array */\n\t\tpublic char[] nca(int n) {\n\t\t\tfinal char[] arr = new char[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double 1D array */\n\t\tpublic double[] nda(int n) {\n\t\t\tfinal double[] arr = new double[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next integer matrix */\n\t\tpublic int[][] nim(int n, int m) {\n\t\t\tfinal int[][] arr = new int[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long matrix */\n\t\tpublic long[][] nlm(int n, int m) {\n\t\t\tfinal long[][] arr = new long[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string matrix */\n\t\tpublic String[][] nsm(int n, int m) {\n\t\t\tfinal String[][] arr = new String[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char matrix */\n\t\tpublic char[][] ncm(int n, int m) {\n\t\t\tfinal char[][] arr = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double matrix */\n\t\tpublic double[][] ndm(int n, int m) {\n\t\t\tfinal double[][] arr = new double[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();\n\t\t\treturn arr;\n\t\t}\n\n\t\tpublic static void log(Object... o) {\n\t\t\tSystem.out.println(Arrays.deepToString(o));\n\t\t}\n\t}\n\n}", "import java.io.ByteArrayInputStream;", "ByteArrayInputStream", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.Arrays;", "Arrays", "java.util", "import java.util.InputMismatchException;", "InputMismatchException", "java.util", "public class Main {\n\tprivate static PrintWriter out;\n\n\tpublic static void solve() {\n\t\tIn in = new In();\n\t\t// BEFORE SUBMISSION :: Change class name to Main and comment out package name\n\t\t// !!!\n\t\tint x = in.ni();\n\t\tif (x == 0)\n\t\t\tout.println(1);\n\t\telse \n\t\t\tout.println(0);\n\n\t}\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// long start = System.nanoTime();\n\t\tout = new PrintWriter(System.out);\n\t\tsolve();\n\t\tout.flush();\n\t\t// System.out.println(\"Elapsed: \" + (System.nanoTime() - start) / 1000000 +\n\t\t// \"ns\");\n\t}\n\n\t@SuppressWarnings(\"unused\")\n\tprivate static class In {\n\t\tfinal private static int BUFFER_SIZE = 1024;\n\t\tprivate byte[] buf;\n\t\tprivate InputStream is;\n\t\tprivate int buflen;\n\t\tprivate int bufptr;\n\n\t\tpublic In() {\n\t\t\tis = System.in;\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic In(String input) {\n\t\t\tis = new ByteArrayInputStream(input.getBytes());\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic int readByte() {\n\t\t\tif (bufptr >= buflen) {\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tbufptr = 0;\n\t\t\t}\n\t\t\tif (buflen <= 0)\n\t\t\t\treturn -1;\n\t\t\treturn buf[bufptr++];\n\t\t}\n\n\t\tpublic boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n\n\t\tpublic int skip() {\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && isSpaceChar(b))\n\t\t\t\t;\n\t\t\treturn b;\n\t\t}\n\n\t\t/* Next character */\n\t\tpublic char nc() {\n\t\t\treturn (char) skip();\n\t\t}\n\n\t\t/* Next double */\n\t\tpublic double nd() {\n\t\t\treturn Double.parseDouble(ns());\n\t\t}\n\n\t\t/* Next string */\n\t\tpublic String ns() {\n\t\t\tfinal StringBuilder sb = new StringBuilder();\n\t\t\tint b = skip();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\n\t\t/* Next integer */\n\t\tpublic int ni() {\n\t\t\tboolean minus = false;\n\t\t\tint num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next long */\n\t\tpublic long nl() {\n\t\t\tboolean minus = false;\n\t\t\tlong num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next integer 1D array */\n\t\tpublic int[] nia(int n) {\n\t\t\tfinal int[] arr = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long 1D array */\n\t\tpublic long[] nla(int n) {\n\t\t\tfinal long[] arr = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string 1D array */\n\t\tpublic String[] nsa(int n) {\n\t\t\tfinal String[] arr = new String[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char 1D array */\n\t\tpublic char[] nca(int n) {\n\t\t\tfinal char[] arr = new char[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double 1D array */\n\t\tpublic double[] nda(int n) {\n\t\t\tfinal double[] arr = new double[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next integer matrix */\n\t\tpublic int[][] nim(int n, int m) {\n\t\t\tfinal int[][] arr = new int[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long matrix */\n\t\tpublic long[][] nlm(int n, int m) {\n\t\t\tfinal long[][] arr = new long[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string matrix */\n\t\tpublic String[][] nsm(int n, int m) {\n\t\t\tfinal String[][] arr = new String[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char matrix */\n\t\tpublic char[][] ncm(int n, int m) {\n\t\t\tfinal char[][] arr = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double matrix */\n\t\tpublic double[][] ndm(int n, int m) {\n\t\t\tfinal double[][] arr = new double[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();\n\t\t\treturn arr;\n\t\t}\n\n\t\tpublic static void log(Object... o) {\n\t\t\tSystem.out.println(Arrays.deepToString(o));\n\t\t}\n\t}\n\n}", "Main", "private static PrintWriter out;", "out", "public static void solve() {\n\t\tIn in = new In();\n\t\t// BEFORE SUBMISSION :: Change class name to Main and comment out package name\n\t\t// !!!\n\t\tint x = in.ni();\n\t\tif (x == 0)\n\t\t\tout.println(1);\n\t\telse \n\t\t\tout.println(0);\n\n\t}", "solve", "{\n\t\tIn in = new In();\n\t\t// BEFORE SUBMISSION :: Change class name to Main and comment out package name\n\t\t// !!!\n\t\tint x = in.ni();\n\t\tif (x == 0)\n\t\t\tout.println(1);\n\t\telse \n\t\t\tout.println(0);\n\n\t}", "In in = new In();", "in", "new In()", "int x = in.ni();", "x", "in.ni()", "in.ni", "in", "if (x == 0)\n\t\t\tout.println(1);\n\t\telse \n\t\t\tout.println(0);", "x == 0", "x", "0", "out.println(1)", "out.println", "out", "1", "out.println(0)", "out.println", "out", "0", "public static void main(String[] args) throws IOException {\n\t\t// long start = System.nanoTime();\n\t\tout = new PrintWriter(System.out);\n\t\tsolve();\n\t\tout.flush();\n\t\t// System.out.println(\"Elapsed: \" + (System.nanoTime() - start) / 1000000 +\n\t\t// \"ns\");\n\t}", "main", "{\n\t\t// long start = System.nanoTime();\n\t\tout = new PrintWriter(System.out);\n\t\tsolve();\n\t\tout.flush();\n\t\t// System.out.println(\"Elapsed: \" + (System.nanoTime() - start) / 1000000 +\n\t\t// \"ns\");\n\t}", "out = new PrintWriter(System.out)", "out", "new PrintWriter(System.out)", "solve()", "solve", "out.flush()", "out.flush", "out", "String[] args", "args", "private static class In {\n\t\tfinal private static int BUFFER_SIZE = 1024;\n\t\tprivate byte[] buf;\n\t\tprivate InputStream is;\n\t\tprivate int buflen;\n\t\tprivate int bufptr;\n\n\t\tpublic In() {\n\t\t\tis = System.in;\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic In(String input) {\n\t\t\tis = new ByteArrayInputStream(input.getBytes());\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic int readByte() {\n\t\t\tif (bufptr >= buflen) {\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tbufptr = 0;\n\t\t\t}\n\t\t\tif (buflen <= 0)\n\t\t\t\treturn -1;\n\t\t\treturn buf[bufptr++];\n\t\t}\n\n\t\tpublic boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n\n\t\tpublic int skip() {\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && isSpaceChar(b))\n\t\t\t\t;\n\t\t\treturn b;\n\t\t}\n\n\t\t/* Next character */\n\t\tpublic char nc() {\n\t\t\treturn (char) skip();\n\t\t}\n\n\t\t/* Next double */\n\t\tpublic double nd() {\n\t\t\treturn Double.parseDouble(ns());\n\t\t}\n\n\t\t/* Next string */\n\t\tpublic String ns() {\n\t\t\tfinal StringBuilder sb = new StringBuilder();\n\t\t\tint b = skip();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\n\t\t/* Next integer */\n\t\tpublic int ni() {\n\t\t\tboolean minus = false;\n\t\t\tint num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next long */\n\t\tpublic long nl() {\n\t\t\tboolean minus = false;\n\t\t\tlong num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next integer 1D array */\n\t\tpublic int[] nia(int n) {\n\t\t\tfinal int[] arr = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long 1D array */\n\t\tpublic long[] nla(int n) {\n\t\t\tfinal long[] arr = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string 1D array */\n\t\tpublic String[] nsa(int n) {\n\t\t\tfinal String[] arr = new String[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char 1D array */\n\t\tpublic char[] nca(int n) {\n\t\t\tfinal char[] arr = new char[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double 1D array */\n\t\tpublic double[] nda(int n) {\n\t\t\tfinal double[] arr = new double[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next integer matrix */\n\t\tpublic int[][] nim(int n, int m) {\n\t\t\tfinal int[][] arr = new int[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long matrix */\n\t\tpublic long[][] nlm(int n, int m) {\n\t\t\tfinal long[][] arr = new long[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string matrix */\n\t\tpublic String[][] nsm(int n, int m) {\n\t\t\tfinal String[][] arr = new String[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char matrix */\n\t\tpublic char[][] ncm(int n, int m) {\n\t\t\tfinal char[][] arr = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double matrix */\n\t\tpublic double[][] ndm(int n, int m) {\n\t\t\tfinal double[][] arr = new double[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();\n\t\t\treturn arr;\n\t\t}\n\n\t\tpublic static void log(Object... o) {\n\t\t\tSystem.out.println(Arrays.deepToString(o));\n\t\t}\n\t}", "In", "final private static int BUFFER_SIZE = 1024;", "BUFFER_SIZE", "1024", "private byte[] buf;", "buf", "private InputStream is;", "is", "private int buflen;", "buflen", "private int bufptr;", "bufptr", "public In() {\n\t\t\tis = System.in;\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}", "In", "{\n\t\t\tis = System.in;\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}", "is = System.in", "is", "System.in", "System", "System.in", "buf = new byte[BUFFER_SIZE]", "buf", "new byte[BUFFER_SIZE]", "BUFFER_SIZE", "buflen = bufptr = 0", "buflen", "bufptr = 0", "bufptr", "0", "public In(String input) {\n\t\t\tis = new ByteArrayInputStream(input.getBytes());\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}", "In", "{\n\t\t\tis = new ByteArrayInputStream(input.getBytes());\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}", "is = new ByteArrayInputStream(input.getBytes())", "is", "new ByteArrayInputStream(input.getBytes())", "buf = new byte[BUFFER_SIZE]", "buf", "new byte[BUFFER_SIZE]", "BUFFER_SIZE", "buflen = bufptr = 0", "buflen", "bufptr = 0", "bufptr", "0", "String input", "input", "public int readByte() {\n\t\t\tif (bufptr >= buflen) {\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tbufptr = 0;\n\t\t\t}\n\t\t\tif (buflen <= 0)\n\t\t\t\treturn -1;\n\t\t\treturn buf[bufptr++];\n\t\t}", "readByte", "{\n\t\t\tif (bufptr >= buflen) {\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tbufptr = 0;\n\t\t\t}\n\t\t\tif (buflen <= 0)\n\t\t\t\treturn -1;\n\t\t\treturn buf[bufptr++];\n\t\t}", "if (bufptr >= buflen) {\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tbufptr = 0;\n\t\t\t}", "bufptr >= buflen", "bufptr", "buflen", "{\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tbufptr = 0;\n\t\t\t}", "try {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}", "catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}", "IOException ioe", "{\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}", "throw new InputMismatchException();", "new InputMismatchException()", "{\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t}", "buflen = is.read(buf)", "buflen", "is.read(buf)", "is.read", "is", "buf", "bufptr = 0", "bufptr", "0", "if (buflen <= 0)\n\t\t\t\treturn -1;", "buflen <= 0", "buflen", "0", "return -1;", "-1", "1", "return buf[bufptr++];", "buf[bufptr++]", "buf", "bufptr++", "bufptr", "public boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}", "isSpaceChar", "{\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}", "return !(c >= 33 && c <= 126);", "!(c >= 33 && c <= 126)", "(c >= 33 && c <= 126)", "c >= 33", "c", "33", "c <= 126", "c", "126", "int c", "c", "public int skip() {\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && isSpaceChar(b))\n\t\t\t\t;\n\t\t\treturn b;\n\t\t}", "skip", "{\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && isSpaceChar(b))\n\t\t\t\t;\n\t\t\treturn b;\n\t\t}", "int b;", "b", "while ((b = readByte()) != -1 && isSpaceChar(b))\n\t\t\t\t;", "(b = readByte()) != -1 && isSpaceChar(b)", "(b = readByte()) != -1", "(b = readByte())", "b", "readByte()", "readByte", "-1", "1", "isSpaceChar(b)", "isSpaceChar", "b", "return b;", "b", "/* Next character */\n\t\tpublic char nc() {\n\t\t\treturn (char) skip();\n\t\t}", "nc", "{\n\t\t\treturn (char) skip();\n\t\t}", "return (char) skip();", "(char) skip()", "skip", "/* Next double */\n\t\tpublic double nd() {\n\t\t\treturn Double.parseDouble(ns());\n\t\t}", "nd", "{\n\t\t\treturn Double.parseDouble(ns());\n\t\t}", "return Double.parseDouble(ns());", "Double.parseDouble(ns())", "Double.parseDouble", "Double", "ns()", "ns", "/* Next string */\n\t\tpublic String ns() {\n\t\t\tfinal StringBuilder sb = new StringBuilder();\n\t\t\tint b = skip();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}", "ns", "{\n\t\t\tfinal StringBuilder sb = new StringBuilder();\n\t\t\tint b = skip();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}", "final StringBuilder sb = new StringBuilder();", "sb", "new StringBuilder()", "int b = skip();", "b", "skip()", "skip", "while (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}", "!isSpaceChar(b)", "isSpaceChar(b)", "isSpaceChar", "b", "{\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}", "sb.appendCodePoint(b)", "sb.appendCodePoint", "sb", "b", "b = readByte()", "b", "readByte()", "readByte", "return sb.toString();", "sb.toString()", "sb.toString", "sb", "/* Next integer */\n\t\tpublic int ni() {\n\t\t\tboolean minus = false;\n\t\t\tint num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}", "ni", "{\n\t\t\tboolean minus = false;\n\t\t\tint num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}", "boolean minus = false;", "minus", "false", "int num = 0;", "num", "0", "int b;", "b", "while ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;", "(b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')", "(b = readByte()) != -1", "(b = readByte())", "b", "readByte()", "readByte", "-1", "1", "!((b >= '0' && b <= '9') || b == '-')", "((b >= '0' && b <= '9') || b == '-')", "(b >= '0' && b <= '9')", "b >= '0'", "b", "'0'", "b <= '9'", "b", "'9'", "b == '-'", "b", "'-'", "if (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}", "b == '-'", "b", "'-'", "{\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}", "minus = true", "minus", "true", "b = readByte()", "b", "readByte()", "readByte", "while (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}", "b >= '0' && b <= '9'", "b >= '0'", "b", "'0'", "b <= '9'", "b", "'9'", "{\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}", "num = num * 10 + (b - '0')", "num", "num * 10 + (b - '0')", "num * 10", "num", "10", "(b - '0')", "b", "'0'", "b = readByte()", "b", "readByte()", "readByte", "return minus ? -num : num;", "minus ? -num : num", "minus", "-num", "num", "num", "/* Next long */\n\t\tpublic long nl() {\n\t\t\tboolean minus = false;\n\t\t\tlong num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}", "nl", "{\n\t\t\tboolean minus = false;\n\t\t\tlong num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}", "boolean minus = false;", "minus", "false", "long num = 0;", "num", "0", "int b;", "b", "while ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;", "(b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')", "(b = readByte()) != -1", "(b = readByte())", "b", "readByte()", "readByte", "-1", "1", "!((b >= '0' && b <= '9') || b == '-')", "((b >= '0' && b <= '9') || b == '-')", "(b >= '0' && b <= '9')", "b >= '0'", "b", "'0'", "b <= '9'", "b", "'9'", "b == '-'", "b", "'-'", "if (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}", "b == '-'", "b", "'-'", "{\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}", "minus = true", "minus", "true", "b = readByte()", "b", "readByte()", "readByte", "while (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}", "b >= '0' && b <= '9'", "b >= '0'", "b", "'0'", "b <= '9'", "b", "'9'", "{\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}", "num = num * 10 + (b - '0')", "num", "num * 10 + (b - '0')", "num * 10", "num", "10", "(b - '0')", "b", "'0'", "b = readByte()", "b", "readByte()", "readByte", "return minus ? -num : num;", "minus ? -num : num", "minus", "-num", "num", "num", "/* Next integer 1D array */\n\t\tpublic int[] nia(int n) {\n\t\t\tfinal int[] arr = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ni();\n\t\t\treturn arr;\n\t\t}", "nia", "{\n\t\t\tfinal int[] arr = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ni();\n\t\t\treturn arr;\n\t\t}", "final int[] arr = new int[n];", "arr", "new int[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ni();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "arr[i] = ni();", "arr[i] = ni()", "arr[i]", "arr", "i", "ni()", "ni", "return arr;", "arr", "int n", "n", "/* Next long 1D array */\n\t\tpublic long[] nla(int n) {\n\t\t\tfinal long[] arr = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nl();\n\t\t\treturn arr;\n\t\t}", "nla", "{\n\t\t\tfinal long[] arr = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nl();\n\t\t\treturn arr;\n\t\t}", "final long[] arr = new long[n];", "arr", "new long[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nl();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "arr[i] = nl();", "arr[i] = nl()", "arr[i]", "arr", "i", "nl()", "nl", "return arr;", "arr", "int n", "n", "/* Next string 1D array */\n\t\tpublic String[] nsa(int n) {\n\t\t\tfinal String[] arr = new String[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ns();\n\t\t\treturn arr;\n\t\t}", "nsa", "{\n\t\t\tfinal String[] arr = new String[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ns();\n\t\t\treturn arr;\n\t\t}", "final String[] arr = new String[n];", "arr", "new String[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ns();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "arr[i] = ns();", "arr[i] = ns()", "arr[i]", "arr", "i", "ns()", "ns", "return arr;", "arr", "int n", "n", "/* Next char 1D array */\n\t\tpublic char[] nca(int n) {\n\t\t\tfinal char[] arr = new char[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}", "nca", "{\n\t\t\tfinal char[] arr = new char[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}", "final char[] arr = new char[n];", "arr", "new char[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "arr[i] = nc();", "arr[i] = nc()", "arr[i]", "arr", "i", "nc()", "nc", "return arr;", "arr", "int n", "n", "/* Next double 1D array */\n\t\tpublic double[] nda(int n) {\n\t\t\tfinal double[] arr = new double[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}", "nda", "{\n\t\t\tfinal double[] arr = new double[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}", "final double[] arr = new double[n];", "arr", "new double[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "arr[i] = nc();", "arr[i] = nc()", "arr[i]", "arr", "i", "nc()", "nc", "return arr;", "arr", "int n", "n", "/* Next integer matrix */\n\t\tpublic int[][] nim(int n, int m) {\n\t\t\tfinal int[][] arr = new int[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();\n\t\t\treturn arr;\n\t\t}", "nim", "{\n\t\t\tfinal int[][] arr = new int[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();\n\t\t\treturn arr;\n\t\t}", "final int[][] arr = new int[n][m];", "arr", "new int[n][m]", "n", "m", "for (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();", "int j = 0;", "int j = 0;", "j", "0", "j < m", "j", "m", "j++", "j++", "j", "arr[i][j] = ni();", "arr[i][j] = ni()", "arr[i][j]", "arr[i]", "arr", "i", "j", "ni()", "ni", "return arr;", "arr", "int n", "n", "int m", "m", "/* Next long matrix */\n\t\tpublic long[][] nlm(int n, int m) {\n\t\t\tfinal long[][] arr = new long[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();\n\t\t\treturn arr;\n\t\t}", "nlm", "{\n\t\t\tfinal long[][] arr = new long[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();\n\t\t\treturn arr;\n\t\t}", "final long[][] arr = new long[n][m];", "arr", "new long[n][m]", "n", "m", "for (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();", "int j = 0;", "int j = 0;", "j", "0", "j < m", "j", "m", "j++", "j++", "j", "arr[i][j] = nl();", "arr[i][j] = nl()", "arr[i][j]", "arr[i]", "arr", "i", "j", "nl()", "nl", "return arr;", "arr", "int n", "n", "int m", "m", "/* Next string matrix */\n\t\tpublic String[][] nsm(int n, int m) {\n\t\t\tfinal String[][] arr = new String[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();\n\t\t\treturn arr;\n\t\t}", "nsm", "{\n\t\t\tfinal String[][] arr = new String[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();\n\t\t\treturn arr;\n\t\t}", "final String[][] arr = new String[n][m];", "arr", "new String[n][m]", "n", "m", "for (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();", "int j = 0;", "int j = 0;", "j", "0", "j < m", "j", "m", "j++", "j++", "j", "arr[i][j] = ns();", "arr[i][j] = ns()", "arr[i][j]", "arr[i]", "arr", "i", "j", "ns()", "ns", "return arr;", "arr", "int n", "n", "int m", "m", "/* Next char matrix */\n\t\tpublic char[][] ncm(int n, int m) {\n\t\t\tfinal char[][] arr = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();\n\t\t\treturn arr;\n\t\t}", "ncm", "{\n\t\t\tfinal char[][] arr = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();\n\t\t\treturn arr;\n\t\t}", "final char[][] arr = new char[n][m];", "arr", "new char[n][m]", "n", "m", "for (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();", "int j = 0;", "int j = 0;", "j", "0", "j < m", "j", "m", "j++", "j++", "j", "arr[i][j] = nc();", "arr[i][j] = nc()", "arr[i][j]", "arr[i]", "arr", "i", "j", "nc()", "nc", "return arr;", "arr", "int n", "n", "int m", "m", "/* Next double matrix */\n\t\tpublic double[][] ndm(int n, int m) {\n\t\t\tfinal double[][] arr = new double[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();\n\t\t\treturn arr;\n\t\t}", "ndm", "{\n\t\t\tfinal double[][] arr = new double[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();\n\t\t\treturn arr;\n\t\t}", "final double[][] arr = new double[n][m];", "arr", "new double[n][m]", "n", "m", "for (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();", "for (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();", "int j = 0;", "int j = 0;", "j", "0", "j < m", "j", "m", "j++", "j++", "j", "arr[i][j] = nd();", "arr[i][j] = nd()", "arr[i][j]", "arr[i]", "arr", "i", "j", "nd()", "nd", "return arr;", "arr", "int n", "n", "int m", "m", "public static void log(Object... o) {\n\t\t\tSystem.out.println(Arrays.deepToString(o));\n\t\t}", "log", "{\n\t\t\tSystem.out.println(Arrays.deepToString(o));\n\t\t}", "System.out.println(Arrays.deepToString(o))", "System.out.println", "System.out", "System", "System.out", "Arrays.deepToString(o)", "Arrays.deepToString", "Arrays", "o", "Object... o", "o", "public class Main {\n\tprivate static PrintWriter out;\n\n\tpublic static void solve() {\n\t\tIn in = new In();\n\t\t// BEFORE SUBMISSION :: Change class name to Main and comment out package name\n\t\t// !!!\n\t\tint x = in.ni();\n\t\tif (x == 0)\n\t\t\tout.println(1);\n\t\telse \n\t\t\tout.println(0);\n\n\t}\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// long start = System.nanoTime();\n\t\tout = new PrintWriter(System.out);\n\t\tsolve();\n\t\tout.flush();\n\t\t// System.out.println(\"Elapsed: \" + (System.nanoTime() - start) / 1000000 +\n\t\t// \"ns\");\n\t}\n\n\t@SuppressWarnings(\"unused\")\n\tprivate static class In {\n\t\tfinal private static int BUFFER_SIZE = 1024;\n\t\tprivate byte[] buf;\n\t\tprivate InputStream is;\n\t\tprivate int buflen;\n\t\tprivate int bufptr;\n\n\t\tpublic In() {\n\t\t\tis = System.in;\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic In(String input) {\n\t\t\tis = new ByteArrayInputStream(input.getBytes());\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic int readByte() {\n\t\t\tif (bufptr >= buflen) {\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tbufptr = 0;\n\t\t\t}\n\t\t\tif (buflen <= 0)\n\t\t\t\treturn -1;\n\t\t\treturn buf[bufptr++];\n\t\t}\n\n\t\tpublic boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n\n\t\tpublic int skip() {\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && isSpaceChar(b))\n\t\t\t\t;\n\t\t\treturn b;\n\t\t}\n\n\t\t/* Next character */\n\t\tpublic char nc() {\n\t\t\treturn (char) skip();\n\t\t}\n\n\t\t/* Next double */\n\t\tpublic double nd() {\n\t\t\treturn Double.parseDouble(ns());\n\t\t}\n\n\t\t/* Next string */\n\t\tpublic String ns() {\n\t\t\tfinal StringBuilder sb = new StringBuilder();\n\t\t\tint b = skip();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\n\t\t/* Next integer */\n\t\tpublic int ni() {\n\t\t\tboolean minus = false;\n\t\t\tint num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next long */\n\t\tpublic long nl() {\n\t\t\tboolean minus = false;\n\t\t\tlong num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next integer 1D array */\n\t\tpublic int[] nia(int n) {\n\t\t\tfinal int[] arr = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long 1D array */\n\t\tpublic long[] nla(int n) {\n\t\t\tfinal long[] arr = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string 1D array */\n\t\tpublic String[] nsa(int n) {\n\t\t\tfinal String[] arr = new String[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char 1D array */\n\t\tpublic char[] nca(int n) {\n\t\t\tfinal char[] arr = new char[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double 1D array */\n\t\tpublic double[] nda(int n) {\n\t\t\tfinal double[] arr = new double[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next integer matrix */\n\t\tpublic int[][] nim(int n, int m) {\n\t\t\tfinal int[][] arr = new int[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long matrix */\n\t\tpublic long[][] nlm(int n, int m) {\n\t\t\tfinal long[][] arr = new long[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string matrix */\n\t\tpublic String[][] nsm(int n, int m) {\n\t\t\tfinal String[][] arr = new String[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char matrix */\n\t\tpublic char[][] ncm(int n, int m) {\n\t\t\tfinal char[][] arr = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double matrix */\n\t\tpublic double[][] ndm(int n, int m) {\n\t\t\tfinal double[][] arr = new double[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();\n\t\t\treturn arr;\n\t\t}\n\n\t\tpublic static void log(Object... o) {\n\t\t\tSystem.out.println(Arrays.deepToString(o));\n\t\t}\n\t}\n\n}", "public class Main {\n\tprivate static PrintWriter out;\n\n\tpublic static void solve() {\n\t\tIn in = new In();\n\t\t// BEFORE SUBMISSION :: Change class name to Main and comment out package name\n\t\t// !!!\n\t\tint x = in.ni();\n\t\tif (x == 0)\n\t\t\tout.println(1);\n\t\telse \n\t\t\tout.println(0);\n\n\t}\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// long start = System.nanoTime();\n\t\tout = new PrintWriter(System.out);\n\t\tsolve();\n\t\tout.flush();\n\t\t// System.out.println(\"Elapsed: \" + (System.nanoTime() - start) / 1000000 +\n\t\t// \"ns\");\n\t}\n\n\t@SuppressWarnings(\"unused\")\n\tprivate static class In {\n\t\tfinal private static int BUFFER_SIZE = 1024;\n\t\tprivate byte[] buf;\n\t\tprivate InputStream is;\n\t\tprivate int buflen;\n\t\tprivate int bufptr;\n\n\t\tpublic In() {\n\t\t\tis = System.in;\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic In(String input) {\n\t\t\tis = new ByteArrayInputStream(input.getBytes());\n\t\t\tbuf = new byte[BUFFER_SIZE];\n\t\t\tbuflen = bufptr = 0;\n\t\t}\n\n\t\tpublic int readByte() {\n\t\t\tif (bufptr >= buflen) {\n\t\t\t\ttry {\n\t\t\t\t\tbuflen = is.read(buf);\n\t\t\t\t} catch (IOException ioe) {\n\t\t\t\t\tthrow new InputMismatchException();\n\t\t\t\t}\n\t\t\t\tbufptr = 0;\n\t\t\t}\n\t\t\tif (buflen <= 0)\n\t\t\t\treturn -1;\n\t\t\treturn buf[bufptr++];\n\t\t}\n\n\t\tpublic boolean isSpaceChar(int c) {\n\t\t\treturn !(c >= 33 && c <= 126);\n\t\t}\n\n\t\tpublic int skip() {\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && isSpaceChar(b))\n\t\t\t\t;\n\t\t\treturn b;\n\t\t}\n\n\t\t/* Next character */\n\t\tpublic char nc() {\n\t\t\treturn (char) skip();\n\t\t}\n\n\t\t/* Next double */\n\t\tpublic double nd() {\n\t\t\treturn Double.parseDouble(ns());\n\t\t}\n\n\t\t/* Next string */\n\t\tpublic String ns() {\n\t\t\tfinal StringBuilder sb = new StringBuilder();\n\t\t\tint b = skip();\n\t\t\twhile (!isSpaceChar(b)) {\n\t\t\t\tsb.appendCodePoint(b);\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn sb.toString();\n\t\t}\n\n\t\t/* Next integer */\n\t\tpublic int ni() {\n\t\t\tboolean minus = false;\n\t\t\tint num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next long */\n\t\tpublic long nl() {\n\t\t\tboolean minus = false;\n\t\t\tlong num = 0;\n\t\t\tint b;\n\t\t\twhile ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'))\n\t\t\t\t;\n\t\t\tif (b == '-') {\n\t\t\t\tminus = true;\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\twhile (b >= '0' && b <= '9') {\n\t\t\t\tnum = num * 10 + (b - '0');\n\t\t\t\tb = readByte();\n\t\t\t}\n\t\t\treturn minus ? -num : num;\n\t\t}\n\n\t\t/* Next integer 1D array */\n\t\tpublic int[] nia(int n) {\n\t\t\tfinal int[] arr = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long 1D array */\n\t\tpublic long[] nla(int n) {\n\t\t\tfinal long[] arr = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string 1D array */\n\t\tpublic String[] nsa(int n) {\n\t\t\tfinal String[] arr = new String[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char 1D array */\n\t\tpublic char[] nca(int n) {\n\t\t\tfinal char[] arr = new char[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double 1D array */\n\t\tpublic double[] nda(int n) {\n\t\t\tfinal double[] arr = new double[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tarr[i] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next integer matrix */\n\t\tpublic int[][] nim(int n, int m) {\n\t\t\tfinal int[][] arr = new int[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ni();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next long matrix */\n\t\tpublic long[][] nlm(int n, int m) {\n\t\t\tfinal long[][] arr = new long[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nl();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next string matrix */\n\t\tpublic String[][] nsm(int n, int m) {\n\t\t\tfinal String[][] arr = new String[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = ns();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next char matrix */\n\t\tpublic char[][] ncm(int n, int m) {\n\t\t\tfinal char[][] arr = new char[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nc();\n\t\t\treturn arr;\n\t\t}\n\n\t\t/* Next double matrix */\n\t\tpublic double[][] ndm(int n, int m) {\n\t\t\tfinal double[][] arr = new double[n][m];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\tfor (int j = 0; j < m; j++)\n\t\t\t\t\tarr[i][j] = nd();\n\t\t\treturn arr;\n\t\t}\n\n\t\tpublic static void log(Object... o) {\n\t\t\tSystem.out.println(Arrays.deepToString(o));\n\t\t}\n\t}\n\n}", "Main" ]
// package beginner00178; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.InputMismatchException; public class Main { private static PrintWriter out; public static void solve() { In in = new In(); // BEFORE SUBMISSION :: Change class name to Main and comment out package name // !!! int x = in.ni(); if (x == 0) out.println(1); else out.println(0); } public static void main(String[] args) throws IOException { // long start = System.nanoTime(); out = new PrintWriter(System.out); solve(); out.flush(); // System.out.println("Elapsed: " + (System.nanoTime() - start) / 1000000 + // "ns"); } @SuppressWarnings("unused") private static class In { final private static int BUFFER_SIZE = 1024; private byte[] buf; private InputStream is; private int buflen; private int bufptr; public In() { is = System.in; buf = new byte[BUFFER_SIZE]; buflen = bufptr = 0; } public In(String input) { is = new ByteArrayInputStream(input.getBytes()); buf = new byte[BUFFER_SIZE]; buflen = bufptr = 0; } public int readByte() { if (bufptr >= buflen) { try { buflen = is.read(buf); } catch (IOException ioe) { throw new InputMismatchException(); } bufptr = 0; } if (buflen <= 0) return -1; return buf[bufptr++]; } public boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); } public int skip() { int b; while ((b = readByte()) != -1 && isSpaceChar(b)) ; return b; } /* Next character */ public char nc() { return (char) skip(); } /* Next double */ public double nd() { return Double.parseDouble(ns()); } /* Next string */ public String ns() { final StringBuilder sb = new StringBuilder(); int b = skip(); while (!isSpaceChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } /* Next integer */ public int ni() { boolean minus = false; int num = 0; int b; while ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')) ; if (b == '-') { minus = true; b = readByte(); } while (b >= '0' && b <= '9') { num = num * 10 + (b - '0'); b = readByte(); } return minus ? -num : num; } /* Next long */ public long nl() { boolean minus = false; long num = 0; int b; while ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')) ; if (b == '-') { minus = true; b = readByte(); } while (b >= '0' && b <= '9') { num = num * 10 + (b - '0'); b = readByte(); } return minus ? -num : num; } /* Next integer 1D array */ public int[] nia(int n) { final int[] arr = new int[n]; for (int i = 0; i < n; i++) arr[i] = ni(); return arr; } /* Next long 1D array */ public long[] nla(int n) { final long[] arr = new long[n]; for (int i = 0; i < n; i++) arr[i] = nl(); return arr; } /* Next string 1D array */ public String[] nsa(int n) { final String[] arr = new String[n]; for (int i = 0; i < n; i++) arr[i] = ns(); return arr; } /* Next char 1D array */ public char[] nca(int n) { final char[] arr = new char[n]; for (int i = 0; i < n; i++) arr[i] = nc(); return arr; } /* Next double 1D array */ public double[] nda(int n) { final double[] arr = new double[n]; for (int i = 0; i < n; i++) arr[i] = nc(); return arr; } /* Next integer matrix */ public int[][] nim(int n, int m) { final int[][] arr = new int[n][m]; for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) arr[i][j] = ni(); return arr; } /* Next long matrix */ public long[][] nlm(int n, int m) { final long[][] arr = new long[n][m]; for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) arr[i][j] = nl(); return arr; } /* Next string matrix */ public String[][] nsm(int n, int m) { final String[][] arr = new String[n][m]; for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) arr[i][j] = ns(); return arr; } /* Next char matrix */ public char[][] ncm(int n, int m) { final char[][] arr = new char[n][m]; for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) arr[i][j] = nc(); return arr; } /* Next double matrix */ public double[][] ndm(int n, int m) { final double[][] arr = new double[n][m]; for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) arr[i][j] = nd(); return arr; } public static void log(Object... o) { System.out.println(Arrays.deepToString(o)); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 41, 8 ], [ 41, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 25, 30 ], [ 20, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 34, 36 ], [ 32, 37 ], [ 9, 38 ], [ 38, 39 ], [ 0, 40 ], [ 40, 41 ], [ 40, 42 ] ]
[ "import java.util.*; \nimport java.lang.*; \n\n\npublic class Main{\n \n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n \n int x = scan.nextInt();\n \n if(x==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n \n }\n}", "import java.util.*;", "util.*", "java", "import java.lang.*;", "lang.*", "java", "public class Main{\n \n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n \n int x = scan.nextInt();\n \n if(x==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n \n }\n}", "Main", "public static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n \n int x = scan.nextInt();\n \n if(x==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n \n }", "main", "{\n\t\tScanner scan = new Scanner(System.in);\n \n int x = scan.nextInt();\n \n if(x==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n \n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "if(x==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }", "x==0", "x", "0", "{\n System.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "{\n System.out.println(0);\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main{\n \n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n \n int x = scan.nextInt();\n \n if(x==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n \n }\n}", "public class Main{\n \n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n \n int x = scan.nextInt();\n \n if(x==0){\n System.out.println(1);\n }else{\n System.out.println(0);\n }\n \n }\n}", "Main" ]
import java.util.*; import java.lang.*; public class Main{ public static void main(String[] args){ Scanner scan = new Scanner(System.in); int x = scan.nextInt(); if(x==0){ System.out.println(1); }else{ System.out.println(0); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 21, 26 ], [ 17, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 27, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 31, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 6, 40 ], [ 40, 41 ] ]
[ "import java.util.*;\nclass Main{\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num = scanner.nextInt();\n\t\tif(num == 0)System.out.println(1);\n\t\telse if(num == 1)System.out.println(0);\n\t\tscanner.close();\n\t}\n}", "import java.util.*;", "util.*", "java", "class Main{\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num = scanner.nextInt();\n\t\tif(num == 0)System.out.println(1);\n\t\telse if(num == 1)System.out.println(0);\n\t\tscanner.close();\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num = scanner.nextInt();\n\t\tif(num == 0)System.out.println(1);\n\t\telse if(num == 1)System.out.println(0);\n\t\tscanner.close();\n\t}", "main", "{\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num = scanner.nextInt();\n\t\tif(num == 0)System.out.println(1);\n\t\telse if(num == 1)System.out.println(0);\n\t\tscanner.close();\n\t}", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int num = scanner.nextInt();", "num", "scanner.nextInt()", "scanner.nextInt", "scanner", "if(num == 0)System.out.println(1);\n\t\telse if(num == 1)System.out.println(0);", "num == 0", "num", "0", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "if(num == 1)System.out.println(0);", "num == 1", "num", "1", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "scanner.close()", "scanner.close", "scanner", "String[] args", "args" ]
import java.util.*; class Main{ public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int num = scanner.nextInt(); if(num == 0)System.out.println(1); else if(num == 1)System.out.println(0); scanner.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 17, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 4, 18, 13, 29, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 139, 20 ], [ 139, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 23, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 23, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 32, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 36, 41 ], [ 32, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 42, 47 ], [ 21, 48 ], [ 48, 49 ], [ 139, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 50, 54 ], [ 54, 55 ], [ 50, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 50, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 65, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 75, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 64, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 50, 90 ], [ 90, 91 ], [ 90, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 94, 97 ], [ 97, 98 ], [ 50, 99 ], [ 99, 100 ], [ 99, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 103, 106 ], [ 106, 107 ], [ 50, 108 ], [ 108, 109 ], [ 108, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 113, 114 ], [ 112, 115 ], [ 115, 116 ], [ 50, 117 ], [ 117, 118 ], [ 117, 119 ], [ 119, 120 ], [ 120, 121 ], [ 120, 122 ], [ 119, 123 ], [ 123, 124 ], [ 124, 125 ], [ 124, 126 ], [ 126, 127 ], [ 127, 128 ], [ 128, 129 ], [ 123, 130 ], [ 130, 131 ], [ 131, 132 ], [ 131, 133 ], [ 133, 134 ], [ 134, 135 ], [ 119, 136 ], [ 136, 137 ], [ 0, 138 ], [ 138, 139 ], [ 138, 140 ] ]
[ "\n\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.Arrays;\nimport java.util.StringTokenizer;\nimport java.util.*;\npublic class Main {\n\t\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tFastScanner fs = new FastScanner();\n\t\tint x= fs.nextInt();\n\t\tif(x==1)\n\t\t\tSystem.out.println(\"0\");\n\t\telse\n\t\t\tSystem.out.println(\"1\");\n\t}\n\t\n\t\n\t\n\tstatic class FastScanner \n { \n BufferedReader br; \n StringTokenizer st; \n \n public FastScanner() \n { \n br = new BufferedReader(new\n InputStreamReader(System.in)); \n } \n \n String next() \n { \n while (st == null || !st.hasMoreElements()) \n { \n try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n } \n return st.nextToken(); \n } \n \n int nextInt() \n { \n return Integer.parseInt(next()); \n } \n \n long nextLong() \n { \n return Long.parseLong(next()); \n } \n \n double nextDouble() \n { \n return Double.parseDouble(next()); \n } \n \n String nextLine() \n { \n String str = \"\"; \n try\n { \n str = br.readLine(); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n return str; \n } \n }\n\t\n\t\n\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.util.Arrays;", "Arrays", "java.util", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "import java.util.*;", "util.*", "java", "public class Main {\n\t\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tFastScanner fs = new FastScanner();\n\t\tint x= fs.nextInt();\n\t\tif(x==1)\n\t\t\tSystem.out.println(\"0\");\n\t\telse\n\t\t\tSystem.out.println(\"1\");\n\t}\n\t\n\t\n\t\n\tstatic class FastScanner \n { \n BufferedReader br; \n StringTokenizer st; \n \n public FastScanner() \n { \n br = new BufferedReader(new\n InputStreamReader(System.in)); \n } \n \n String next() \n { \n while (st == null || !st.hasMoreElements()) \n { \n try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n } \n return st.nextToken(); \n } \n \n int nextInt() \n { \n return Integer.parseInt(next()); \n } \n \n long nextLong() \n { \n return Long.parseLong(next()); \n } \n \n double nextDouble() \n { \n return Double.parseDouble(next()); \n } \n \n String nextLine() \n { \n String str = \"\"; \n try\n { \n str = br.readLine(); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n return str; \n } \n }\n\t\n\t\n\n}", "Main", "public static void main(String[] args) {\n\t\t\n\t\tFastScanner fs = new FastScanner();\n\t\tint x= fs.nextInt();\n\t\tif(x==1)\n\t\t\tSystem.out.println(\"0\");\n\t\telse\n\t\t\tSystem.out.println(\"1\");\n\t}", "main", "{\n\t\t\n\t\tFastScanner fs = new FastScanner();\n\t\tint x= fs.nextInt();\n\t\tif(x==1)\n\t\t\tSystem.out.println(\"0\");\n\t\telse\n\t\t\tSystem.out.println(\"1\");\n\t}", "FastScanner fs = new FastScanner();", "fs", "new FastScanner()", "int x= fs.nextInt();", "x", "fs.nextInt()", "fs.nextInt", "fs", "if(x==1)\n\t\t\tSystem.out.println(\"0\");\n\t\telse\n\t\t\tSystem.out.println(\"1\");", "x==1", "x", "1", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "String[] args", "args", "static class FastScanner \n { \n BufferedReader br; \n StringTokenizer st; \n \n public FastScanner() \n { \n br = new BufferedReader(new\n InputStreamReader(System.in)); \n } \n \n String next() \n { \n while (st == null || !st.hasMoreElements()) \n { \n try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n } \n return st.nextToken(); \n } \n \n int nextInt() \n { \n return Integer.parseInt(next()); \n } \n \n long nextLong() \n { \n return Long.parseLong(next()); \n } \n \n double nextDouble() \n { \n return Double.parseDouble(next()); \n } \n \n String nextLine() \n { \n String str = \"\"; \n try\n { \n str = br.readLine(); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n return str; \n } \n }", "FastScanner", "BufferedReader br;", "br", "StringTokenizer st;", "st", "public FastScanner() \n { \n br = new BufferedReader(new\n InputStreamReader(System.in)); \n }", "FastScanner", "{ \n br = new BufferedReader(new\n InputStreamReader(System.in)); \n }", "br = new BufferedReader(new\n InputStreamReader(System.in))", "br", "new BufferedReader(new\n InputStreamReader(System.in))", "String next() \n { \n while (st == null || !st.hasMoreElements()) \n { \n try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n } \n return st.nextToken(); \n }", "next", "{ \n while (st == null || !st.hasMoreElements()) \n { \n try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n } \n return st.nextToken(); \n }", "while (st == null || !st.hasMoreElements()) \n { \n try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n }", "st == null || !st.hasMoreElements()", "st == null", "st", "null", "!st.hasMoreElements()", "st.hasMoreElements()", "st.hasMoreElements", "st", "{ \n try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n }", "try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n }", "catch (IOException e) \n { \n e.printStackTrace(); \n }", "IOException e", "{ \n e.printStackTrace(); \n }", "e.printStackTrace()", "e.printStackTrace", "e", "{ \n st = new StringTokenizer(br.readLine()); \n }", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "int nextInt() \n { \n return Integer.parseInt(next()); \n }", "nextInt", "{ \n return Integer.parseInt(next()); \n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "long nextLong() \n { \n return Long.parseLong(next()); \n }", "nextLong", "{ \n return Long.parseLong(next()); \n }", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "double nextDouble() \n { \n return Double.parseDouble(next()); \n }", "nextDouble", "{ \n return Double.parseDouble(next()); \n }", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "String nextLine() \n { \n String str = \"\"; \n try\n { \n str = br.readLine(); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n return str; \n }", "nextLine", "{ \n String str = \"\"; \n try\n { \n str = br.readLine(); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n return str; \n }", "String str = \"\";", "str", "\"\"", "try\n { \n str = br.readLine(); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n }", "catch (IOException e) \n { \n e.printStackTrace(); \n }", "IOException e", "{ \n e.printStackTrace(); \n }", "e.printStackTrace()", "e.printStackTrace", "e", "{ \n str = br.readLine(); \n }", "str = br.readLine()", "str", "br.readLine()", "br.readLine", "br", "return str;", "str", "public class Main {\n\t\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tFastScanner fs = new FastScanner();\n\t\tint x= fs.nextInt();\n\t\tif(x==1)\n\t\t\tSystem.out.println(\"0\");\n\t\telse\n\t\t\tSystem.out.println(\"1\");\n\t}\n\t\n\t\n\t\n\tstatic class FastScanner \n { \n BufferedReader br; \n StringTokenizer st; \n \n public FastScanner() \n { \n br = new BufferedReader(new\n InputStreamReader(System.in)); \n } \n \n String next() \n { \n while (st == null || !st.hasMoreElements()) \n { \n try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n } \n return st.nextToken(); \n } \n \n int nextInt() \n { \n return Integer.parseInt(next()); \n } \n \n long nextLong() \n { \n return Long.parseLong(next()); \n } \n \n double nextDouble() \n { \n return Double.parseDouble(next()); \n } \n \n String nextLine() \n { \n String str = \"\"; \n try\n { \n str = br.readLine(); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n return str; \n } \n }\n\t\n\t\n\n}", "public class Main {\n\t\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tFastScanner fs = new FastScanner();\n\t\tint x= fs.nextInt();\n\t\tif(x==1)\n\t\t\tSystem.out.println(\"0\");\n\t\telse\n\t\t\tSystem.out.println(\"1\");\n\t}\n\t\n\t\n\t\n\tstatic class FastScanner \n { \n BufferedReader br; \n StringTokenizer st; \n \n public FastScanner() \n { \n br = new BufferedReader(new\n InputStreamReader(System.in)); \n } \n \n String next() \n { \n while (st == null || !st.hasMoreElements()) \n { \n try\n { \n st = new StringTokenizer(br.readLine()); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n } \n return st.nextToken(); \n } \n \n int nextInt() \n { \n return Integer.parseInt(next()); \n } \n \n long nextLong() \n { \n return Long.parseLong(next()); \n } \n \n double nextDouble() \n { \n return Double.parseDouble(next()); \n } \n \n String nextLine() \n { \n String str = \"\"; \n try\n { \n str = br.readLine(); \n } \n catch (IOException e) \n { \n e.printStackTrace(); \n } \n return str; \n } \n }\n\t\n\t\n\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.StringTokenizer; import java.util.*; public class Main { public static void main(String[] args) { FastScanner fs = new FastScanner(); int x= fs.nextInt(); if(x==1) System.out.println("0"); else System.out.println("1"); } static class FastScanner { BufferedReader br; StringTokenizer st; public FastScanner() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 0, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 38, 5 ], [ 38, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 22, 24 ], [ 17, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 8, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 6, 35 ], [ 35, 36 ], [ 0, 37 ], [ 37, 38 ], [ 37, 39 ] ]
[ "import java.util.*;\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n \tif( n == 1 ){\n n = 0;\n }else{\n n = 1;\n }\n \tSystem.out.println(n);\n\t}\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n \tif( n == 1 ){\n n = 0;\n }else{\n n = 1;\n }\n \tSystem.out.println(n);\n\t}\n}", "Main", "public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n \tif( n == 1 ){\n n = 0;\n }else{\n n = 1;\n }\n \tSystem.out.println(n);\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n \tif( n == 1 ){\n n = 0;\n }else{\n n = 1;\n }\n \tSystem.out.println(n);\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int n = sc.nextInt();", "n", "sc.nextInt()", "sc.nextInt", "sc", "if( n == 1 ){\n n = 0;\n }else{\n n = 1;\n }", "n == 1", "n", "1", "{\n n = 0;\n }", "n = 0", "n", "0", "{\n n = 1;\n }", "n = 1", "n", "1", "System.out.println(n)", "System.out.println", "System.out", "System", "System.out", "n", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n \tif( n == 1 ){\n n = 0;\n }else{\n n = 1;\n }\n \tSystem.out.println(n);\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n \tif( n == 1 ){\n n = 0;\n }else{\n n = 1;\n }\n \tSystem.out.println(n);\n\t}\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if( n == 1 ){ n = 0; }else{ n = 1; } System.out.println(n); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 2, 17, 17, 12, 13, 30, 14, 2, 13, 17, 29, 13, 29, 4, 13, 2, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 17, 42, 2, 13, 17, 30, 14, 2, 2, 13, 17, 17, 30, 0, 13, 2, 2, 13, 13, 13, 0, 13, 2, 2, 13, 13, 13, 0, 13, 2, 13, 17, 29, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 13, 17, 4, 18, 13, 17, 4, 18, 13, 4, 18, 13, 23, 13, 6, 13, 41, 13, 41, 13, 20, 17, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 23, 13, 12, 13, 30, 14, 2, 13, 40, 17, 37, 20, 14, 2, 13, 13, 30, 0, 13, 17, 38, 5, 13, 30, 37, 20, 30, 0, 13, 4, 18, 13, 13, 14, 2, 13, 17, 29, 40, 17, 29, 18, 13, 40, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 30, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 40, 17, 0, 13, 4, 13, 41, 13, 17, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 37, 20, 0, 13, 17, 0, 13, 2, 13, 17, 0, 13, 4, 13, 29, 2, 13, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 30, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 40, 17, 0, 13, 4, 13, 41, 13, 17, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 37, 20, 0, 13, 17, 0, 13, 2, 13, 17, 0, 13, 4, 13, 29, 2, 13, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 30, 0, 13, 4, 13, 41, 13, 20, 42, 40, 4, 13, 13, 30, 4, 18, 13, 13, 0, 13, 4, 13, 29, 4, 18, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 20, 42, 40, 4, 13, 13, 30, 4, 18, 13, 13, 0, 13, 4, 13, 29, 4, 18, 13, 12, 13, 30, 14, 2, 13, 17, 29, 4, 18, 13, 13, 29, 2, 2, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 23, 13, 12, 13, 30, 29, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 23, 13, 6, 13, 12, 13, 23, 13, 6, 13, 41, 13, 12, 13, 30, 0, 13, 20, 23, 13, 12, 13, 30, 0, 18, 36, 13, 20, 23, 13, 12, 13, 30, 11, 1, 41, 13, 17, 2, 13, 18, 13, 13, 1, 40, 13, 30, 30, 14, 2, 13, 17, 4, 18, 13, 17, 4, 18, 13, 18, 13, 13, 23, 13, 12, 13, 30, 4, 13, 13, 4, 18, 13, 23, 13, 12, 13, 30, 4, 18, 13, 12, 13, 30, 4, 18, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 11, 13 ], [ 7, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 16, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 26, 28 ], [ 24, 29 ], [ 14, 30 ], [ 30, 31 ], [ 14, 32 ], [ 32, 33 ], [ 7, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 36, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 40, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 46, 50 ], [ 45, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 44, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 44, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 68, 70 ], [ 36, 71 ], [ 71, 72 ], [ 34, 73 ], [ 73, 74 ], [ 34, 75 ], [ 75, 76 ], [ 7, 77 ], [ 77, 78 ], [ 77, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 79, 83 ], [ 83, 84 ], [ 83, 85 ], [ 79, 86 ], [ 86, 87 ], [ 86, 88 ], [ 88, 89 ], [ 89, 90 ], [ 79, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 91, 95 ], [ 95, 96 ], [ 96, 97 ], [ 95, 98 ], [ 91, 99 ], [ 99, 100 ], [ 100, 101 ], [ 99, 102 ], [ 79, 103 ], [ 103, 104 ], [ 104, 105 ], [ 79, 106 ], [ 106, 107 ], [ 107, 108 ], [ 77, 109 ], [ 109, 110 ], [ 7, 111 ], [ 111, 112 ], [ 111, 113 ], [ 113, 114 ], [ 111, 115 ], [ 115, 116 ], [ 115, 117 ], [ 111, 119 ], [ 119, 120 ], [ 111, 121 ], [ 121, 122 ], [ 111, 123 ], [ 123, 124 ], [ 111, 125 ], [ 125, 126 ], [ 125, 127 ], [ 127, 128 ], [ 128, 129 ], [ 129, 130 ], [ 129, 131 ], [ 128, 132 ], [ 125, 133 ], [ 133, 134 ], [ 111, 135 ], [ 135, 136 ], [ 135, 137 ], [ 137, 138 ], [ 138, 139 ], [ 139, 140 ], [ 139, 141 ], [ 141, 142 ], [ 138, 143 ], [ 143, 144 ], [ 137, 145 ], [ 145, 146 ], [ 146, 147 ], [ 146, 148 ], [ 145, 149 ], [ 149, 150 ], [ 150, 151 ], [ 150, 152 ], [ 149, 153 ], [ 153, 154 ], [ 154, 155 ], [ 154, 156 ], [ 156, 157 ], [ 157, 158 ], [ 153, 159 ], [ 159, 160 ], [ 160, 161 ], [ 160, 162 ], [ 162, 163 ], [ 163, 164 ], [ 162, 165 ], [ 149, 166 ], [ 166, 167 ], [ 167, 168 ], [ 167, 169 ], [ 166, 170 ], [ 170, 171 ], [ 171, 172 ], [ 137, 173 ], [ 173, 174 ], [ 174, 175 ], [ 174, 176 ], [ 176, 177 ], [ 111, 178 ], [ 178, 179 ], [ 178, 180 ], [ 180, 181 ], [ 181, 182 ], [ 181, 183 ], [ 183, 184 ], [ 180, 185 ], [ 185, 186 ], [ 186, 187 ], [ 186, 188 ], [ 185, 189 ], [ 189, 190 ], [ 190, 191 ], [ 190, 192 ], [ 192, 193 ], [ 180, 194 ], [ 194, 195 ], [ 194, 196 ], [ 180, 197 ], [ 197, 198 ], [ 198, 199 ], [ 198, 200 ], [ 197, 201 ], [ 201, 202 ], [ 202, 203 ], [ 202, 204 ], [ 204, 205 ], [ 201, 206 ], [ 206, 207 ], [ 206, 208 ], [ 208, 209 ], [ 180, 210 ], [ 210, 211 ], [ 210, 212 ], [ 180, 213 ], [ 213, 214 ], [ 214, 215 ], [ 215, 216 ], [ 215, 217 ], [ 213, 218 ], [ 218, 219 ], [ 219, 220 ], [ 220, 221 ], [ 221, 222 ], [ 221, 223 ], [ 220, 224 ], [ 224, 225 ], [ 224, 226 ], [ 219, 227 ], [ 227, 228 ], [ 218, 229 ], [ 229, 230 ], [ 229, 231 ], [ 218, 232 ], [ 232, 233 ], [ 232, 234 ], [ 234, 235 ], [ 234, 236 ], [ 218, 237 ], [ 237, 238 ], [ 237, 239 ], [ 239, 240 ], [ 180, 241 ], [ 241, 242 ], [ 242, 243 ], [ 242, 244 ], [ 111, 245 ], [ 245, 246 ], [ 245, 247 ], [ 247, 248 ], [ 248, 249 ], [ 248, 250 ], [ 250, 251 ], [ 247, 252 ], [ 252, 253 ], [ 253, 254 ], [ 253, 255 ], [ 252, 256 ], [ 256, 257 ], [ 257, 258 ], [ 257, 259 ], [ 259, 260 ], [ 247, 261 ], [ 261, 262 ], [ 261, 263 ], [ 247, 264 ], [ 264, 265 ], [ 265, 266 ], [ 265, 267 ], [ 264, 268 ], [ 268, 269 ], [ 269, 270 ], [ 269, 271 ], [ 271, 272 ], [ 268, 273 ], [ 273, 274 ], [ 273, 275 ], [ 275, 276 ], [ 247, 277 ], [ 277, 278 ], [ 277, 279 ], [ 247, 280 ], [ 280, 281 ], [ 281, 282 ], [ 282, 283 ], [ 282, 284 ], [ 280, 285 ], [ 285, 286 ], [ 286, 287 ], [ 287, 288 ], [ 288, 289 ], [ 288, 290 ], [ 287, 291 ], [ 291, 292 ], [ 291, 293 ], [ 286, 294 ], [ 294, 295 ], [ 285, 296 ], [ 296, 297 ], [ 296, 298 ], [ 285, 299 ], [ 299, 300 ], [ 299, 301 ], [ 301, 302 ], [ 301, 303 ], [ 285, 304 ], [ 304, 305 ], [ 304, 306 ], [ 306, 307 ], [ 247, 308 ], [ 308, 309 ], [ 309, 310 ], [ 309, 311 ], [ 111, 312 ], [ 312, 313 ], [ 312, 314 ], [ 314, 315 ], [ 315, 316 ], [ 315, 317 ], [ 314, 319 ], [ 319, 320 ], [ 320, 321 ], [ 321, 322 ], [ 321, 323 ], [ 319, 324 ], [ 324, 325 ], [ 324, 326 ], [ 319, 327 ], [ 327, 328 ], [ 328, 329 ], [ 319, 330 ], [ 331, 331 ], [ 331, 332 ], [ 332, 333 ], [ 333, 334 ], [ 333, 335 ], [ 332, 336 ], [ 336, 337 ], [ 314, 338 ], [ 338, 339 ], [ 312, 340 ], [ 340, 341 ], [ 111, 342 ], [ 342, 343 ], [ 342, 344 ], [ 344, 345 ], [ 345, 346 ], [ 345, 347 ], [ 347, 348 ], [ 344, 349 ], [ 349, 350 ], [ 350, 351 ], [ 350, 352 ], [ 349, 353 ], [ 353, 354 ], [ 354, 355 ], [ 354, 356 ], [ 356, 357 ], [ 344, 358 ], [ 358, 359 ], [ 358, 360 ], [ 344, 361 ], [ 361, 362 ], [ 362, 363 ], [ 363, 364 ], [ 363, 365 ], [ 361, 366 ], [ 366, 367 ], [ 367, 368 ], [ 368, 369 ], [ 367, 370 ], [ 366, 371 ], [ 371, 372 ], [ 371, 373 ], [ 373, 374 ], [ 344, 375 ], [ 375, 376 ], [ 376, 377 ], [ 377, 378 ], [ 111, 379 ], [ 379, 380 ], [ 379, 381 ], [ 381, 382 ], [ 382, 383 ], [ 382, 384 ], [ 384, 385 ], [ 381, 386 ], [ 386, 387 ], [ 387, 388 ], [ 387, 389 ], [ 386, 390 ], [ 390, 391 ], [ 390, 392 ], [ 392, 393 ], [ 381, 394 ], [ 394, 395 ], [ 394, 396 ], [ 381, 397 ], [ 397, 398 ], [ 398, 399 ], [ 399, 400 ], [ 399, 401 ], [ 397, 402 ], [ 402, 403 ], [ 403, 404 ], [ 404, 405 ], [ 403, 406 ], [ 402, 407 ], [ 407, 408 ], [ 407, 409 ], [ 409, 410 ], [ 381, 411 ], [ 411, 412 ], [ 412, 413 ], [ 413, 414 ], [ 111, 415 ], [ 415, 416 ], [ 415, 417 ], [ 417, 418 ], [ 418, 419 ], [ 419, 420 ], [ 419, 421 ], [ 418, 422 ], [ 422, 423 ], [ 423, 424 ], [ 424, 425 ], [ 423, 426 ], [ 417, 427 ], [ 427, 428 ], [ 431, 429 ], [ 441, 430 ], [ 438, 431 ], [ 431, 432 ], [ 432, 433 ], [ 432, 434 ], [ 431, 435 ], [ 435, 436 ], [ 435, 437 ], [ 438, 438 ], [ 438, 439 ], [ 438, 440 ], [ 441, 441 ], [ 441, 442 ], [ 441, 443 ], [ 431, 444 ], [ 444, 445 ], [ 444, 446 ], [ 446, 447 ], [ 415, 448 ], [ 448, 449 ], [ 111, 450 ], [ 450, 451 ], [ 450, 452 ], [ 452, 453 ], [ 453, 454 ], [ 455, 455 ], [ 455, 456 ], [ 456, 457 ], [ 456, 458 ], [ 455, 459 ], [ 459, 460 ], [ 459, 461 ], [ 455, 462 ], [ 462, 463 ], [ 462, 464 ], [ 464, 465 ], [ 450, 466 ], [ 466, 467 ], [ 111, 468 ], [ 468, 469 ], [ 468, 470 ], [ 470, 471 ], [ 470, 472 ], [ 472, 473 ], [ 7, 474 ], [ 474, 475 ], [ 474, 476 ], [ 476, 477 ], [ 474, 478 ], [ 478, 479 ], [ 478, 480 ], [ 480, 481 ], [ 481, 482 ], [ 481, 483 ], [ 478, 484 ], [ 484, 485 ], [ 474, 486 ], [ 486, 487 ], [ 486, 488 ], [ 488, 489 ], [ 489, 490 ], [ 490, 491 ], [ 490, 492 ], [ 489, 493 ], [ 486, 494 ], [ 494, 495 ], [ 474, 496 ], [ 496, 497 ], [ 496, 498 ], [ 498, 499 ], [ 499, 500 ], [ 500, 501 ], [ 501, 502 ], [ 501, 503 ], [ 499, 504 ], [ 504, 505 ], [ 504, 506 ], [ 506, 507 ], [ 506, 508 ], [ 499, 509 ], [ 509, 510 ], [ 510, 511 ], [ 499, 512 ], [ 513, 513 ], [ 513, 514 ], [ 514, 515 ], [ 515, 516 ], [ 515, 517 ], [ 514, 518 ], [ 518, 519 ], [ 519, 520 ], [ 518, 521 ], [ 513, 522 ], [ 522, 523 ], [ 523, 524 ], [ 522, 525 ], [ 525, 526 ], [ 525, 527 ], [ 496, 528 ], [ 528, 529 ], [ 474, 530 ], [ 530, 531 ], [ 530, 532 ], [ 532, 533 ], [ 533, 534 ], [ 533, 535 ], [ 532, 536 ], [ 536, 537 ], [ 537, 538 ], [ 530, 539 ], [ 539, 540 ], [ 474, 541 ], [ 541, 542 ], [ 541, 543 ], [ 543, 544 ], [ 544, 545 ], [ 545, 546 ], [ 474, 547 ], [ 547, 548 ], [ 547, 549 ], [ 549, 550 ], [ 550, 551 ], [ 551, 552 ] ]
[ "import java.util.*;\nimport java.io.*;\nclass Main{\n static class InputReader {\n\n private final InputStream stream;\n private final byte[] buf = new byte[8192];\n private int curChar, snumChars;\n private SpaceCharFilter filter;\n\n public InputReader(InputStream stream) {\n this.stream = stream;\n }\n\n public int snext() {\n if (snumChars == -1)\n throw new InputMismatchException();\n if (curChar >= snumChars) {\n curChar = 0;\n try {\n snumChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (snumChars <= 0)\n return -1;\n }\n return buf[curChar++];\n }\n\n public int nextInt() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public long nextLong() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public int[] nextIntArray(int n) {\n int a[] = new int[n];\n for (int i = 0; i < n; i++) {\n a[i] = nextInt();\n }\n return a;\n }\n\n public String readString() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isSpaceChar(c));\n return res.toString();\n }\n\n public String nextLine() {\n int c = snext();\n while (isSpaceChar(c))\n c = snext();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isEndOfLine(c));\n return res.toString();\n }\n\n public boolean isSpaceChar(int c) {\n if (filter != null)\n return filter.isSpaceChar(c);\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n private boolean isEndOfLine(int c) {\n return c == '\\n' || c == '\\r' || c == -1;\n }\n\n public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n }\n\n }\n static class OutputWriter {\n\t\tprivate final PrintWriter writer;\n \n\t\tpublic OutputWriter(OutputStream outputStream) {\n\t\t\twriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));\n\t\t}\n \n\t\tpublic OutputWriter(Writer writer) {\n\t\t\tthis.writer = new PrintWriter(writer);\n\t\t}\n \n\t\tpublic void print(Object...objects) {\n\t\t\tfor (int i = 0; i < objects.length; i++) {\n\t\t\t\tif (i != 0)\n\t\t\t\t\twriter.print(' ');\n\t\t\t\twriter.print(objects[i]);\n\t\t\t}\n\t\t}\n \n\t\tpublic void printLine(Object...objects) {\n\t\t\tprint(objects);\n\t\t\twriter.println();\n\t\t}\n \n\t\tpublic void close() {\n\t\t\twriter.close();\n\t\t}\n \n\t\tpublic void flush() {\n\t\t\twriter.flush();\n\t\t}\n \n\t\t}\n static int gcd(int a, int b) \n { \n if (a == 0) \n return b; \n return gcd(b % a, a); \n } \n static int mod = (int)(1e9+7);\n public static long pow(long a,long b)\n {\n long ans = 1;\n while(b> 0)\n {\n if((b & 1)==1){\n ans = (ans*a) % mod; \n }\n a = (a*a) % mod;\n b = b>>1;\n }\n return ans;\n }\n\n public static void main(String[] args) {\n InputReader in = new InputReader(System.in);\n OutputWriter out = new OutputWriter(System.out);\n int t = in.nextInt();\n if(t==0)\n out.printLine(\"1\");\n else \n out.printLine(\"0\");\n out.flush();\n out.close();\n }\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "class Main{\n static class InputReader {\n\n private final InputStream stream;\n private final byte[] buf = new byte[8192];\n private int curChar, snumChars;\n private SpaceCharFilter filter;\n\n public InputReader(InputStream stream) {\n this.stream = stream;\n }\n\n public int snext() {\n if (snumChars == -1)\n throw new InputMismatchException();\n if (curChar >= snumChars) {\n curChar = 0;\n try {\n snumChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (snumChars <= 0)\n return -1;\n }\n return buf[curChar++];\n }\n\n public int nextInt() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public long nextLong() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public int[] nextIntArray(int n) {\n int a[] = new int[n];\n for (int i = 0; i < n; i++) {\n a[i] = nextInt();\n }\n return a;\n }\n\n public String readString() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isSpaceChar(c));\n return res.toString();\n }\n\n public String nextLine() {\n int c = snext();\n while (isSpaceChar(c))\n c = snext();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isEndOfLine(c));\n return res.toString();\n }\n\n public boolean isSpaceChar(int c) {\n if (filter != null)\n return filter.isSpaceChar(c);\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n private boolean isEndOfLine(int c) {\n return c == '\\n' || c == '\\r' || c == -1;\n }\n\n public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n }\n\n }\n static class OutputWriter {\n\t\tprivate final PrintWriter writer;\n \n\t\tpublic OutputWriter(OutputStream outputStream) {\n\t\t\twriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));\n\t\t}\n \n\t\tpublic OutputWriter(Writer writer) {\n\t\t\tthis.writer = new PrintWriter(writer);\n\t\t}\n \n\t\tpublic void print(Object...objects) {\n\t\t\tfor (int i = 0; i < objects.length; i++) {\n\t\t\t\tif (i != 0)\n\t\t\t\t\twriter.print(' ');\n\t\t\t\twriter.print(objects[i]);\n\t\t\t}\n\t\t}\n \n\t\tpublic void printLine(Object...objects) {\n\t\t\tprint(objects);\n\t\t\twriter.println();\n\t\t}\n \n\t\tpublic void close() {\n\t\t\twriter.close();\n\t\t}\n \n\t\tpublic void flush() {\n\t\t\twriter.flush();\n\t\t}\n \n\t\t}\n static int gcd(int a, int b) \n { \n if (a == 0) \n return b; \n return gcd(b % a, a); \n } \n static int mod = (int)(1e9+7);\n public static long pow(long a,long b)\n {\n long ans = 1;\n while(b> 0)\n {\n if((b & 1)==1){\n ans = (ans*a) % mod; \n }\n a = (a*a) % mod;\n b = b>>1;\n }\n return ans;\n }\n\n public static void main(String[] args) {\n InputReader in = new InputReader(System.in);\n OutputWriter out = new OutputWriter(System.out);\n int t = in.nextInt();\n if(t==0)\n out.printLine(\"1\");\n else \n out.printLine(\"0\");\n out.flush();\n out.close();\n }\n}", "Main", "static int mod = (int)(1e9+7);", "mod", "(int)(1e9+7)", "1e9", "7", "static int gcd(int a, int b) \n { \n if (a == 0) \n return b; \n return gcd(b % a, a); \n }", "gcd", "{ \n if (a == 0) \n return b; \n return gcd(b % a, a); \n }", "if (a == 0) \n return b;", "a == 0", "a", "0", "return b;", "b", "return gcd(b % a, a);", "gcd(b % a, a)", "gcd", "b % a", "b", "a", "a", "int a", "a", "int b", "b", "public static long pow(long a,long b)\n {\n long ans = 1;\n while(b> 0)\n {\n if((b & 1)==1){\n ans = (ans*a) % mod; \n }\n a = (a*a) % mod;\n b = b>>1;\n }\n return ans;\n }", "pow", "{\n long ans = 1;\n while(b> 0)\n {\n if((b & 1)==1){\n ans = (ans*a) % mod; \n }\n a = (a*a) % mod;\n b = b>>1;\n }\n return ans;\n }", "long ans = 1;", "ans", "1", "while(b> 0)\n {\n if((b & 1)==1){\n ans = (ans*a) % mod; \n }\n a = (a*a) % mod;\n b = b>>1;\n }", "b> 0", "b", "0", "{\n if((b & 1)==1){\n ans = (ans*a) % mod; \n }\n a = (a*a) % mod;\n b = b>>1;\n }", "if((b & 1)==1){\n ans = (ans*a) % mod; \n }", "(b & 1)==1", "(b & 1)", "b", "1", "1", "{\n ans = (ans*a) % mod; \n }", "ans = (ans*a) % mod", "ans", "(ans*a) % mod", "(ans*a)", "ans", "a", "mod", "a = (a*a) % mod", "a", "(a*a) % mod", "(a*a)", "a", "a", "mod", "b = b>>1", "b", "b>>1", "b", "1", "return ans;", "ans", "long a", "a", "long b", "b", "public static void main(String[] args) {\n InputReader in = new InputReader(System.in);\n OutputWriter out = new OutputWriter(System.out);\n int t = in.nextInt();\n if(t==0)\n out.printLine(\"1\");\n else \n out.printLine(\"0\");\n out.flush();\n out.close();\n }", "main", "{\n InputReader in = new InputReader(System.in);\n OutputWriter out = new OutputWriter(System.out);\n int t = in.nextInt();\n if(t==0)\n out.printLine(\"1\");\n else \n out.printLine(\"0\");\n out.flush();\n out.close();\n }", "InputReader in = new InputReader(System.in);", "in", "new InputReader(System.in)", "OutputWriter out = new OutputWriter(System.out);", "out", "new OutputWriter(System.out)", "int t = in.nextInt();", "t", "in.nextInt()", "in.nextInt", "in", "if(t==0)\n out.printLine(\"1\");\n else \n out.printLine(\"0\");", "t==0", "t", "0", "out.printLine(\"1\")", "out.printLine", "out", "\"1\"", "out.printLine(\"0\")", "out.printLine", "out", "\"0\"", "out.flush()", "out.flush", "out", "out.close()", "out.close", "out", "String[] args", "args", "static class InputReader {\n\n private final InputStream stream;\n private final byte[] buf = new byte[8192];\n private int curChar, snumChars;\n private SpaceCharFilter filter;\n\n public InputReader(InputStream stream) {\n this.stream = stream;\n }\n\n public int snext() {\n if (snumChars == -1)\n throw new InputMismatchException();\n if (curChar >= snumChars) {\n curChar = 0;\n try {\n snumChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (snumChars <= 0)\n return -1;\n }\n return buf[curChar++];\n }\n\n public int nextInt() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public long nextLong() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public int[] nextIntArray(int n) {\n int a[] = new int[n];\n for (int i = 0; i < n; i++) {\n a[i] = nextInt();\n }\n return a;\n }\n\n public String readString() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isSpaceChar(c));\n return res.toString();\n }\n\n public String nextLine() {\n int c = snext();\n while (isSpaceChar(c))\n c = snext();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isEndOfLine(c));\n return res.toString();\n }\n\n public boolean isSpaceChar(int c) {\n if (filter != null)\n return filter.isSpaceChar(c);\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n private boolean isEndOfLine(int c) {\n return c == '\\n' || c == '\\r' || c == -1;\n }\n\n public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n }\n\n }", "InputReader", "private final InputStream stream;", "stream", "private final byte[] buf = new byte[8192];", "buf", "new byte[8192]", "8192", "private int curChar", "curChar", "snumChars;", "snumChars", "private SpaceCharFilter filter;", "filter", "public InputReader(InputStream stream) {\n this.stream = stream;\n }", "InputReader", "{\n this.stream = stream;\n }", "this.stream = stream", "this.stream", "this", "this.stream", "stream", "InputStream stream", "stream", "public int snext() {\n if (snumChars == -1)\n throw new InputMismatchException();\n if (curChar >= snumChars) {\n curChar = 0;\n try {\n snumChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (snumChars <= 0)\n return -1;\n }\n return buf[curChar++];\n }", "snext", "{\n if (snumChars == -1)\n throw new InputMismatchException();\n if (curChar >= snumChars) {\n curChar = 0;\n try {\n snumChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (snumChars <= 0)\n return -1;\n }\n return buf[curChar++];\n }", "if (snumChars == -1)\n throw new InputMismatchException();", "snumChars == -1", "snumChars", "-1", "1", "throw new InputMismatchException();", "new InputMismatchException()", "if (curChar >= snumChars) {\n curChar = 0;\n try {\n snumChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (snumChars <= 0)\n return -1;\n }", "curChar >= snumChars", "curChar", "snumChars", "{\n curChar = 0;\n try {\n snumChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (snumChars <= 0)\n return -1;\n }", "curChar = 0", "curChar", "0", "try {\n snumChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }", "catch (IOException e) {\n throw new InputMismatchException();\n }", "IOException e", "{\n throw new InputMismatchException();\n }", "throw new InputMismatchException();", "new InputMismatchException()", "{\n snumChars = stream.read(buf);\n }", "snumChars = stream.read(buf)", "snumChars", "stream.read(buf)", "stream.read", "stream", "buf", "if (snumChars <= 0)\n return -1;", "snumChars <= 0", "snumChars", "0", "return -1;", "-1", "1", "return buf[curChar++];", "buf[curChar++]", "buf", "curChar++", "curChar", "public int nextInt() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "nextInt", "{\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "int c = snext();", "c", "snext()", "snext", "while (isSpaceChar(c)) {\n c = snext();\n }", "isSpaceChar(c)", "isSpaceChar", "c", "{\n c = snext();\n }", "c = snext()", "c", "snext()", "snext", "int sgn = 1;", "sgn", "1", "if (c == '-') {\n sgn = -1;\n c = snext();\n }", "c == '-'", "c", "'-'", "{\n sgn = -1;\n c = snext();\n }", "sgn = -1", "sgn", "-1", "1", "c = snext()", "c", "snext()", "snext", "int res = 0;", "res", "0", "do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n }", "if (c < '0' || c > '9')\n throw new InputMismatchException();", "c < '0' || c > '9'", "c < '0'", "c", "'0'", "c > '9'", "c", "'9'", "throw new InputMismatchException();", "new InputMismatchException()", "res *= 10", "res", "10", "res += c - '0'", "res", "c - '0'", "c", "'0'", "c = snext()", "c", "snext()", "snext", "return res * sgn;", "res * sgn", "res", "sgn", "public long nextLong() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "nextLong", "{\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = snext();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "int c = snext();", "c", "snext()", "snext", "while (isSpaceChar(c)) {\n c = snext();\n }", "isSpaceChar(c)", "isSpaceChar", "c", "{\n c = snext();\n }", "c = snext()", "c", "snext()", "snext", "int sgn = 1;", "sgn", "1", "if (c == '-') {\n sgn = -1;\n c = snext();\n }", "c == '-'", "c", "'-'", "{\n sgn = -1;\n c = snext();\n }", "sgn = -1", "sgn", "-1", "1", "c = snext()", "c", "snext()", "snext", "long res = 0;", "res", "0", "do {\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n } while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n if (c < '0' || c > '9')\n throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = snext();\n }", "if (c < '0' || c > '9')\n throw new InputMismatchException();", "c < '0' || c > '9'", "c < '0'", "c", "'0'", "c > '9'", "c", "'9'", "throw new InputMismatchException();", "new InputMismatchException()", "res *= 10", "res", "10", "res += c - '0'", "res", "c - '0'", "c", "'0'", "c = snext()", "c", "snext()", "snext", "return res * sgn;", "res * sgn", "res", "sgn", "public int[] nextIntArray(int n) {\n int a[] = new int[n];\n for (int i = 0; i < n; i++) {\n a[i] = nextInt();\n }\n return a;\n }", "nextIntArray", "{\n int a[] = new int[n];\n for (int i = 0; i < n; i++) {\n a[i] = nextInt();\n }\n return a;\n }", "int a[] = new int[n];", "a", "new int[n]", "n", "for (int i = 0; i < n; i++) {\n a[i] = nextInt();\n }", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "{\n a[i] = nextInt();\n }", "{\n a[i] = nextInt();\n }", "a[i] = nextInt()", "a[i]", "a", "i", "nextInt()", "nextInt", "return a;", "a", "int n", "n", "public String readString() {\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isSpaceChar(c));\n return res.toString();\n }", "readString", "{\n int c = snext();\n while (isSpaceChar(c)) {\n c = snext();\n }\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isSpaceChar(c));\n return res.toString();\n }", "int c = snext();", "c", "snext()", "snext", "while (isSpaceChar(c)) {\n c = snext();\n }", "isSpaceChar(c)", "isSpaceChar", "c", "{\n c = snext();\n }", "c = snext()", "c", "snext()", "snext", "StringBuilder res = new StringBuilder();", "res", "new StringBuilder()", "do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n res.appendCodePoint(c);\n c = snext();\n }", "res.appendCodePoint(c)", "res.appendCodePoint", "res", "c", "c = snext()", "c", "snext()", "snext", "return res.toString();", "res.toString()", "res.toString", "res", "public String nextLine() {\n int c = snext();\n while (isSpaceChar(c))\n c = snext();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isEndOfLine(c));\n return res.toString();\n }", "nextLine", "{\n int c = snext();\n while (isSpaceChar(c))\n c = snext();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isEndOfLine(c));\n return res.toString();\n }", "int c = snext();", "c", "snext()", "snext", "while (isSpaceChar(c))\n c = snext();", "isSpaceChar(c)", "isSpaceChar", "c", "c = snext()", "c", "snext()", "snext", "StringBuilder res = new StringBuilder();", "res", "new StringBuilder()", "do {\n res.appendCodePoint(c);\n c = snext();\n } while (!isEndOfLine(c));", "!isEndOfLine(c)", "isEndOfLine(c)", "isEndOfLine", "c", "{\n res.appendCodePoint(c);\n c = snext();\n }", "res.appendCodePoint(c)", "res.appendCodePoint", "res", "c", "c = snext()", "c", "snext()", "snext", "return res.toString();", "res.toString()", "res.toString", "res", "public boolean isSpaceChar(int c) {\n if (filter != null)\n return filter.isSpaceChar(c);\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }", "isSpaceChar", "{\n if (filter != null)\n return filter.isSpaceChar(c);\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }", "if (filter != null)\n return filter.isSpaceChar(c);", "filter != null", "filter", "null", "return filter.isSpaceChar(c);", "filter.isSpaceChar(c)", "filter.isSpaceChar", "filter", "c", "return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;", "c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1", "c == '\\t'", "c == '\\r'", "c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1", "c == ' '", "c", "' '", "c == '\\n'", "c", "'\\n'", "c == '\\r'", "c", "'\\r'", "c == '\\t'", "c", "'\\t'", "c == -1", "c", "-1", "1", "int c", "c", "private boolean isEndOfLine(int c) {\n return c == '\\n' || c == '\\r' || c == -1;\n }", "isEndOfLine", "{\n return c == '\\n' || c == '\\r' || c == -1;\n }", "return c == '\\n' || c == '\\r' || c == -1;", "c == '\\n' || c == '\\r' || c == -1", "c == '\\n' || c == '\\r' || c == -1", "c == '\\n'", "c", "'\\n'", "c == '\\r'", "c", "'\\r'", "c == -1", "c", "-1", "1", "int c", "c", "public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n }", "SpaceCharFilter", "public boolean isSpaceChar(int ch);", "isSpaceChar", "int ch", "ch", "static class OutputWriter {\n\t\tprivate final PrintWriter writer;\n \n\t\tpublic OutputWriter(OutputStream outputStream) {\n\t\t\twriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));\n\t\t}\n \n\t\tpublic OutputWriter(Writer writer) {\n\t\t\tthis.writer = new PrintWriter(writer);\n\t\t}\n \n\t\tpublic void print(Object...objects) {\n\t\t\tfor (int i = 0; i < objects.length; i++) {\n\t\t\t\tif (i != 0)\n\t\t\t\t\twriter.print(' ');\n\t\t\t\twriter.print(objects[i]);\n\t\t\t}\n\t\t}\n \n\t\tpublic void printLine(Object...objects) {\n\t\t\tprint(objects);\n\t\t\twriter.println();\n\t\t}\n \n\t\tpublic void close() {\n\t\t\twriter.close();\n\t\t}\n \n\t\tpublic void flush() {\n\t\t\twriter.flush();\n\t\t}\n \n\t\t}", "OutputWriter", "private final PrintWriter writer;", "writer", "public OutputWriter(OutputStream outputStream) {\n\t\t\twriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));\n\t\t}", "OutputWriter", "{\n\t\t\twriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));\n\t\t}", "writer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)))", "writer", "new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)))", "OutputStream outputStream", "outputStream", "public OutputWriter(Writer writer) {\n\t\t\tthis.writer = new PrintWriter(writer);\n\t\t}", "OutputWriter", "{\n\t\t\tthis.writer = new PrintWriter(writer);\n\t\t}", "this.writer = new PrintWriter(writer)", "this.writer", "this", "this.writer", "new PrintWriter(writer)", "Writer writer", "writer", "public void print(Object...objects) {\n\t\t\tfor (int i = 0; i < objects.length; i++) {\n\t\t\t\tif (i != 0)\n\t\t\t\t\twriter.print(' ');\n\t\t\t\twriter.print(objects[i]);\n\t\t\t}\n\t\t}", "print", "{\n\t\t\tfor (int i = 0; i < objects.length; i++) {\n\t\t\t\tif (i != 0)\n\t\t\t\t\twriter.print(' ');\n\t\t\t\twriter.print(objects[i]);\n\t\t\t}\n\t\t}", "for (int i = 0; i < objects.length; i++) {\n\t\t\t\tif (i != 0)\n\t\t\t\t\twriter.print(' ');\n\t\t\t\twriter.print(objects[i]);\n\t\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < objects.length", "i", "objects.length", "objects", "objects.length", "i++", "i++", "i", "{\n\t\t\t\tif (i != 0)\n\t\t\t\t\twriter.print(' ');\n\t\t\t\twriter.print(objects[i]);\n\t\t\t}", "{\n\t\t\t\tif (i != 0)\n\t\t\t\t\twriter.print(' ');\n\t\t\t\twriter.print(objects[i]);\n\t\t\t}", "if (i != 0)\n\t\t\t\t\twriter.print(' ');", "i != 0", "i", "0", "writer.print(' ')", "writer.print", "writer", "' '", "writer.print(objects[i])", "writer.print", "writer", "objects[i]", "objects", "i", "Object...objects", "objects", "public void printLine(Object...objects) {\n\t\t\tprint(objects);\n\t\t\twriter.println();\n\t\t}", "printLine", "{\n\t\t\tprint(objects);\n\t\t\twriter.println();\n\t\t}", "print(objects)", "print", "objects", "writer.println()", "writer.println", "writer", "Object...objects", "objects", "public void close() {\n\t\t\twriter.close();\n\t\t}", "close", "{\n\t\t\twriter.close();\n\t\t}", "writer.close()", "writer.close", "writer", "public void flush() {\n\t\t\twriter.flush();\n\t\t}", "flush", "{\n\t\t\twriter.flush();\n\t\t}", "writer.flush()", "writer.flush", "writer" ]
import java.util.*; import java.io.*; class Main{ static class InputReader { private final InputStream stream; private final byte[] buf = new byte[8192]; private int curChar, snumChars; private SpaceCharFilter filter; public InputReader(InputStream stream) { this.stream = stream; } public int snext() { if (snumChars == -1) throw new InputMismatchException(); if (curChar >= snumChars) { curChar = 0; try { snumChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (snumChars <= 0) return -1; } return buf[curChar++]; } public int nextInt() { int c = snext(); while (isSpaceChar(c)) { c = snext(); } int sgn = 1; if (c == '-') { sgn = -1; c = snext(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = snext(); } while (!isSpaceChar(c)); return res * sgn; } public long nextLong() { int c = snext(); while (isSpaceChar(c)) { c = snext(); } int sgn = 1; if (c == '-') { sgn = -1; c = snext(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = snext(); } while (!isSpaceChar(c)); return res * sgn; } public int[] nextIntArray(int n) { int a[] = new int[n]; for (int i = 0; i < n; i++) { a[i] = nextInt(); } return a; } public String readString() { int c = snext(); while (isSpaceChar(c)) { c = snext(); } StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = snext(); } while (!isSpaceChar(c)); return res.toString(); } public String nextLine() { int c = snext(); while (isSpaceChar(c)) c = snext(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = snext(); } while (!isEndOfLine(c)); return res.toString(); } public boolean isSpaceChar(int c) { if (filter != null) return filter.isSpaceChar(c); return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } private boolean isEndOfLine(int c) { return c == '\n' || c == '\r' || c == -1; } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } static class OutputWriter { private final PrintWriter writer; public OutputWriter(OutputStream outputStream) { writer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream))); } public OutputWriter(Writer writer) { this.writer = new PrintWriter(writer); } public void print(Object...objects) { for (int i = 0; i < objects.length; i++) { if (i != 0) writer.print(' '); writer.print(objects[i]); } } public void printLine(Object...objects) { print(objects); writer.println(); } public void close() { writer.close(); } public void flush() { writer.flush(); } } static int gcd(int a, int b) { if (a == 0) return b; return gcd(b % a, a); } static int mod = (int)(1e9+7); public static long pow(long a,long b) { long ans = 1; while(b> 0) { if((b & 1)==1){ ans = (ans*a) % mod; } a = (a*a) % mod; b = b>>1; } return ans; } public static void main(String[] args) { InputReader in = new InputReader(System.in); OutputWriter out = new OutputWriter(System.out); int t = in.nextInt(); if(t==0) out.printLine("1"); else out.printLine("0"); out.flush(); out.close(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 4, 18, 18, 13, 13, 8, 2, 4, 18, 13, 17, 17, 17, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 31, 5 ], [ 31, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 13, 14 ], [ 14, 15 ], [ 14, 16 ], [ 12, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 20, 21 ], [ 18, 22 ], [ 17, 23 ], [ 17, 24 ], [ 8, 25 ], [ 25, 26 ], [ 26, 27 ], [ 6, 28 ], [ 28, 29 ], [ 0, 30 ], [ 30, 31 ], [ 30, 32 ] ]
[ "import java.util.Scanner;\n\n/**\n * A - Not\n * 0 以上 1 以下の整数 x が与えられます。\n * x が 0 なら 1 を、1 なら 0 を出力してください。\n */\npublic class Main {\n\n public static void main( String[] args ) {\n\n // 入力値\n Scanner sc = new Scanner( System.in );\n\n System.out.println( sc.nextInt() == 0 ? 1 : 0 );\n\n sc.close();\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n public static void main( String[] args ) {\n\n // 入力値\n Scanner sc = new Scanner( System.in );\n\n System.out.println( sc.nextInt() == 0 ? 1 : 0 );\n\n sc.close();\n }\n}", "Main", "public static void main( String[] args ) {\n\n // 入力値\n Scanner sc = new Scanner( System.in );\n\n System.out.println( sc.nextInt() == 0 ? 1 : 0 );\n\n sc.close();\n }", "main", "{\n\n // 入力値\n Scanner sc = new Scanner( System.in );\n\n System.out.println( sc.nextInt() == 0 ? 1 : 0 );\n\n sc.close();\n }", "Scanner sc = new Scanner( System.in );", "sc", "new Scanner( System.in )", "System.out.println( sc.nextInt() == 0 ? 1 : 0 )", "System.out.println", "System.out", "System", "System.out", "sc.nextInt() == 0 ? 1 : 0", "sc.nextInt() == 0", "sc.nextInt()", "sc.nextInt", "sc", "0", "1", "0", "sc.close()", "sc.close", "sc", "String[] args", "args", "public class Main {\n\n public static void main( String[] args ) {\n\n // 入力値\n Scanner sc = new Scanner( System.in );\n\n System.out.println( sc.nextInt() == 0 ? 1 : 0 );\n\n sc.close();\n }\n}", "public class Main {\n\n public static void main( String[] args ) {\n\n // 入力値\n Scanner sc = new Scanner( System.in );\n\n System.out.println( sc.nextInt() == 0 ? 1 : 0 );\n\n sc.close();\n }\n}", "Main" ]
import java.util.Scanner; /** * A - Not * 0 以上 1 以下の整数 x が与えられます。 * x が 0 なら 1 を、1 なら 0 を出力してください。 */ public class Main { public static void main( String[] args ) { // 入力値 Scanner sc = new Scanner( System.in ); System.out.println( sc.nextInt() == 0 ? 1 : 0 ); sc.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 24, 29 ], [ 20, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 30, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 34, 39 ], [ 30, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 40, 45 ], [ 9, 46 ], [ 46, 47 ] ]
[ "import java.io.*;\nimport java.util.*;\nclass Main\n{\n public static void main(String[] args)\n {\n Scanner sc=new Scanner(System.in);\n int x=sc.nextInt();\n if(x==0)\n System.out.println(\"1\");\n else if(x==1)\n System.out.println(\"0\");\n else\n System.out.println(\"-1\");\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "class Main\n{\n public static void main(String[] args)\n {\n Scanner sc=new Scanner(System.in);\n int x=sc.nextInt();\n if(x==0)\n System.out.println(\"1\");\n else if(x==1)\n System.out.println(\"0\");\n else\n System.out.println(\"-1\");\n }\n}", "Main", "public static void main(String[] args)\n {\n Scanner sc=new Scanner(System.in);\n int x=sc.nextInt();\n if(x==0)\n System.out.println(\"1\");\n else if(x==1)\n System.out.println(\"0\");\n else\n System.out.println(\"-1\");\n }", "main", "{\n Scanner sc=new Scanner(System.in);\n int x=sc.nextInt();\n if(x==0)\n System.out.println(\"1\");\n else if(x==1)\n System.out.println(\"0\");\n else\n System.out.println(\"-1\");\n }", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "if(x==0)\n System.out.println(\"1\");\n else if(x==1)\n System.out.println(\"0\");\n else\n System.out.println(\"-1\");", "x==0", "x", "0", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "if(x==1)\n System.out.println(\"0\");\n else\n System.out.println(\"-1\");", "x==1", "x", "1", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "System.out.println(\"-1\")", "System.out.println", "System.out", "System", "System.out", "\"-1\"", "String[] args", "args" ]
import java.io.*; import java.util.*; class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int x=sc.nextInt(); if(x==0) System.out.println("1"); else if(x==1) System.out.println("0"); else System.out.println("-1"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 28, 5 ], [ 28, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 17, 22 ], [ 22, 23 ], [ 22, 24 ], [ 6, 25 ], [ 25, 26 ], [ 0, 27 ], [ 27, 28 ], [ 27, 29 ] ]
[ "import java.util.*;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int n = scan.nextInt();\n System.out.println(1 - n);\n }\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int n = scan.nextInt();\n System.out.println(1 - n);\n }\n}", "Main", "public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int n = scan.nextInt();\n System.out.println(1 - n);\n }", "main", "{\n Scanner scan = new Scanner(System.in);\n int n = scan.nextInt();\n System.out.println(1 - n);\n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int n = scan.nextInt();", "n", "scan.nextInt()", "scan.nextInt", "scan", "System.out.println(1 - n)", "System.out.println", "System.out", "System", "System.out", "1 - n", "1", "n", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int n = scan.nextInt();\n System.out.println(1 - n);\n }\n}", "public class Main {\n\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int n = scan.nextInt();\n System.out.println(1 - n);\n }\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int n = scan.nextInt(); System.out.println(1 - n); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 28, 5 ], [ 28, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 17, 22 ], [ 22, 23 ], [ 22, 24 ], [ 6, 25 ], [ 25, 26 ], [ 0, 27 ], [ 27, 28 ], [ 27, 29 ] ]
[ "import java.util.*;\n\npublic class Main{\n\tpublic static void main(String[] agrs){\n \tScanner sc = new Scanner(System.in);\n \tint a = sc.nextInt();\n \tSystem.out.println(1-a);\n }\n}", "import java.util.*;", "util.*", "java", "public class Main{\n\tpublic static void main(String[] agrs){\n \tScanner sc = new Scanner(System.in);\n \tint a = sc.nextInt();\n \tSystem.out.println(1-a);\n }\n}", "Main", "public static void main(String[] agrs){\n \tScanner sc = new Scanner(System.in);\n \tint a = sc.nextInt();\n \tSystem.out.println(1-a);\n }", "main", "{\n \tScanner sc = new Scanner(System.in);\n \tint a = sc.nextInt();\n \tSystem.out.println(1-a);\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int a = sc.nextInt();", "a", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println(1-a)", "System.out.println", "System.out", "System", "System.out", "1-a", "1", "a", "String[] agrs", "agrs", "public class Main{\n\tpublic static void main(String[] agrs){\n \tScanner sc = new Scanner(System.in);\n \tint a = sc.nextInt();\n \tSystem.out.println(1-a);\n }\n}", "public class Main{\n\tpublic static void main(String[] agrs){\n \tScanner sc = new Scanner(System.in);\n \tint a = sc.nextInt();\n \tSystem.out.println(1-a);\n }\n}", "Main" ]
import java.util.*; public class Main{ public static void main(String[] agrs){ Scanner sc = new Scanner(System.in); int a = sc.nextInt(); System.out.println(1-a); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 41, 13, 20, 41, 13, 2, 17, 17, 41, 13, 17, 41, 13, 41, 13, 17, 41, 13, 17, 41, 13, 12, 13, 30, 41, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 0, 13, 17, 4, 18, 13, 13, 4, 13, 23, 13, 12, 13, 30, 4, 18, 13, 4, 18, 13, 12, 13, 30, 0, 13, 17, 0, 13, 4, 18, 4, 18, 13, 17, 0, 13, 18, 13, 13, 12, 13, 30, 0, 13, 17, 0, 13, 4, 18, 4, 18, 13, 17, 0, 13, 18, 13, 13, 12, 13, 30, 14, 2, 13, 13, 4, 13, 29, 4, 18, 13, 18, 13, 40, 13, 12, 13, 30, 14, 2, 13, 13, 4, 13, 29, 4, 18, 13, 18, 13, 40, 13, 12, 13, 30, 14, 2, 13, 13, 4, 13, 29, 4, 18, 13, 18, 13, 40, 13, 12, 13, 30, 14, 2, 13, 13, 4, 13, 29, 18, 13, 40, 13, 12, 13, 30, 41, 13, 20, 4, 18, 13, 4, 18, 13, 13, 23, 13, 12, 13, 30, 41, 13, 17, 42, 2, 13, 17, 30, 0, 13, 2, 13, 17, 40, 13, 29, 13, 23, 13, 12, 13, 30, 0, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 20, 23, 13, 12, 13, 30, 4, 18, 18, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 4, 18, 18, 13, 13, 4, 18, 13, 13, 23, 13, 12, 13, 30, 41, 13, 17, 41, 13, 2, 13, 13, 42, 2, 13, 17, 30, 14, 2, 2, 13, 17, 17, 0, 13, 2, 2, 13, 13, 13, 0, 13, 2, 2, 13, 13, 13, 0, 13, 2, 13, 17, 29, 2, 13, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 29, 13, 14, 2, 13, 17, 29, 13, 41, 13, 17, 41, 13, 41, 13, 0, 13, 8, 2, 13, 13, 13, 13, 0, 13, 8, 2, 13, 13, 13, 13, 0, 13, 13, 42, 2, 2, 13, 13, 17, 30, 0, 13, 2, 13, 13, 0, 13, 13, 0, 13, 13, 29, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 2, 13, 2, 13, 17, 41, 13, 2, 13, 2, 13, 17, 29, 2, 2, 17, 13, 13, 12, 13, 30, 41, 13, 13, 29, 2, 2, 13, 18, 13, 13, 2, 13, 18, 13, 13, 23, 13, 12, 13, 30, 29, 2, 2, 2, 2, 17, 13, 17, 13, 17, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 2, 13, 2, 13, 17, 41, 13, 2, 13, 2, 13, 17, 29, 2, 2, 17, 13, 13, 12, 13, 30, 41, 13, 13, 29, 2, 2, 13, 18, 13, 13, 2, 13, 18, 13, 13, 23, 13, 12, 13, 30, 29, 2, 2, 2, 2, 17, 13, 17, 13, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 544, 17 ], [ 544, 18 ], [ 18, 19 ], [ 18, 20 ], [ 544, 21 ], [ 21, 22 ], [ 21, 23 ], [ 544, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 26, 28 ], [ 544, 29 ], [ 29, 30 ], [ 29, 31 ], [ 544, 32 ], [ 32, 33 ], [ 544, 34 ], [ 34, 35 ], [ 34, 36 ], [ 544, 37 ], [ 37, 38 ], [ 37, 39 ], [ 544, 40 ], [ 40, 41 ], [ 544, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 44, 49 ], [ 49, 50 ], [ 49, 51 ], [ 44, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 52, 56 ], [ 56, 57 ], [ 56, 58 ], [ 44, 59 ], [ 59, 60 ], [ 60, 61 ], [ 59, 62 ], [ 44, 63 ], [ 63, 64 ], [ 42, 65 ], [ 65, 66 ], [ 544, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 69, 73 ], [ 73, 74 ], [ 74, 75 ], [ 544, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 78, 82 ], [ 82, 83 ], [ 82, 84 ], [ 84, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 84, 89 ], [ 78, 90 ], [ 90, 91 ], [ 90, 92 ], [ 92, 93 ], [ 92, 94 ], [ 544, 95 ], [ 95, 96 ], [ 95, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 97, 101 ], [ 101, 102 ], [ 101, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 106, 107 ], [ 103, 108 ], [ 97, 109 ], [ 109, 110 ], [ 109, 111 ], [ 111, 112 ], [ 111, 113 ], [ 544, 114 ], [ 114, 115 ], [ 114, 116 ], [ 116, 117 ], [ 117, 118 ], [ 118, 119 ], [ 118, 120 ], [ 117, 121 ], [ 121, 122 ], [ 116, 123 ], [ 123, 124 ], [ 124, 125 ], [ 125, 126 ], [ 124, 127 ], [ 127, 128 ], [ 127, 129 ], [ 129, 130 ], [ 544, 131 ], [ 131, 132 ], [ 131, 133 ], [ 133, 134 ], [ 134, 135 ], [ 135, 136 ], [ 135, 137 ], [ 134, 138 ], [ 138, 139 ], [ 133, 140 ], [ 140, 141 ], [ 141, 142 ], [ 142, 143 ], [ 141, 144 ], [ 144, 145 ], [ 144, 146 ], [ 146, 147 ], [ 544, 148 ], [ 148, 149 ], [ 148, 150 ], [ 150, 151 ], [ 151, 152 ], [ 152, 153 ], [ 152, 154 ], [ 151, 155 ], [ 155, 156 ], [ 150, 157 ], [ 157, 158 ], [ 158, 159 ], [ 159, 160 ], [ 158, 161 ], [ 161, 162 ], [ 161, 163 ], [ 163, 164 ], [ 544, 165 ], [ 165, 166 ], [ 165, 167 ], [ 167, 168 ], [ 168, 169 ], [ 169, 170 ], [ 169, 171 ], [ 168, 172 ], [ 172, 173 ], [ 167, 174 ], [ 174, 175 ], [ 175, 176 ], [ 175, 177 ], [ 177, 178 ], [ 544, 179 ], [ 179, 180 ], [ 179, 181 ], [ 181, 182 ], [ 182, 183 ], [ 182, 184 ], [ 181, 185 ], [ 185, 186 ], [ 186, 187 ], [ 185, 188 ], [ 188, 189 ], [ 189, 190 ], [ 188, 191 ], [ 179, 192 ], [ 192, 193 ], [ 544, 194 ], [ 194, 195 ], [ 194, 196 ], [ 196, 197 ], [ 197, 198 ], [ 197, 199 ], [ 196, 200 ], [ 200, 201 ], [ 201, 202 ], [ 201, 203 ], [ 200, 204 ], [ 204, 205 ], [ 205, 206 ], [ 205, 207 ], [ 207, 208 ], [ 207, 209 ], [ 204, 210 ], [ 210, 211 ], [ 196, 212 ], [ 212, 213 ], [ 194, 214 ], [ 214, 215 ], [ 544, 216 ], [ 216, 217 ], [ 216, 218 ], [ 218, 219 ], [ 219, 220 ], [ 219, 221 ], [ 218, 223 ], [ 223, 224 ], [ 224, 225 ], [ 225, 226 ], [ 225, 227 ], [ 223, 228 ], [ 228, 229 ], [ 228, 230 ], [ 223, 231 ], [ 231, 232 ], [ 232, 233 ], [ 223, 234 ], [ 234, 235 ], [ 235, 236 ], [ 236, 237 ], [ 236, 238 ], [ 235, 239 ], [ 216, 240 ], [ 240, 241 ], [ 544, 242 ], [ 242, 243 ], [ 242, 244 ], [ 244, 245 ], [ 245, 246 ], [ 246, 247 ], [ 247, 248 ], [ 247, 249 ], [ 245, 250 ], [ 242, 251 ], [ 251, 252 ], [ 242, 253 ], [ 253, 254 ], [ 544, 255 ], [ 255, 256 ], [ 255, 257 ], [ 257, 258 ], [ 258, 259 ], [ 259, 260 ], [ 260, 261 ], [ 260, 262 ], [ 258, 263 ], [ 263, 264 ], [ 264, 265 ], [ 263, 266 ], [ 255, 267 ], [ 267, 268 ], [ 544, 269 ], [ 269, 270 ], [ 269, 271 ], [ 271, 272 ], [ 272, 273 ], [ 272, 274 ], [ 271, 275 ], [ 275, 276 ], [ 275, 277 ], [ 277, 278 ], [ 277, 279 ], [ 271, 280 ], [ 280, 281 ], [ 281, 282 ], [ 281, 283 ], [ 280, 284 ], [ 284, 285 ], [ 285, 286 ], [ 286, 287 ], [ 287, 288 ], [ 287, 289 ], [ 286, 290 ], [ 285, 291 ], [ 291, 292 ], [ 291, 293 ], [ 293, 294 ], [ 294, 295 ], [ 294, 296 ], [ 293, 297 ], [ 284, 298 ], [ 298, 299 ], [ 298, 300 ], [ 300, 301 ], [ 301, 302 ], [ 301, 303 ], [ 300, 304 ], [ 284, 305 ], [ 305, 306 ], [ 305, 307 ], [ 307, 308 ], [ 307, 309 ], [ 271, 310 ], [ 310, 311 ], [ 311, 312 ], [ 311, 313 ], [ 269, 314 ], [ 314, 315 ], [ 269, 316 ], [ 316, 317 ], [ 269, 318 ], [ 318, 319 ], [ 544, 320 ], [ 320, 321 ], [ 320, 322 ], [ 322, 323 ], [ 323, 324 ], [ 324, 325 ], [ 324, 326 ], [ 323, 327 ], [ 327, 328 ], [ 322, 329 ], [ 329, 330 ], [ 330, 331 ], [ 330, 332 ], [ 329, 333 ], [ 333, 334 ], [ 322, 335 ], [ 335, 336 ], [ 335, 337 ], [ 322, 338 ], [ 338, 339 ], [ 322, 340 ], [ 340, 341 ], [ 322, 342 ], [ 342, 343 ], [ 342, 344 ], [ 344, 345 ], [ 345, 346 ], [ 345, 347 ], [ 344, 348 ], [ 344, 349 ], [ 322, 350 ], [ 350, 351 ], [ 350, 352 ], [ 352, 353 ], [ 353, 354 ], [ 353, 355 ], [ 352, 356 ], [ 352, 357 ], [ 322, 358 ], [ 358, 359 ], [ 358, 360 ], [ 322, 361 ], [ 361, 362 ], [ 362, 363 ], [ 363, 364 ], [ 363, 365 ], [ 362, 366 ], [ 361, 367 ], [ 367, 368 ], [ 368, 369 ], [ 368, 370 ], [ 370, 371 ], [ 370, 372 ], [ 367, 373 ], [ 373, 374 ], [ 373, 375 ], [ 367, 376 ], [ 376, 377 ], [ 376, 378 ], [ 322, 379 ], [ 379, 380 ], [ 320, 381 ], [ 381, 382 ], [ 320, 383 ], [ 383, 384 ], [ 544, 385 ], [ 385, 386 ], [ 385, 387 ], [ 387, 388 ], [ 385, 389 ], [ 389, 390 ], [ 385, 391 ], [ 391, 392 ], [ 391, 393 ], [ 393, 394 ], [ 394, 395 ], [ 395, 396 ], [ 395, 397 ], [ 394, 398 ], [ 393, 399 ], [ 399, 400 ], [ 400, 401 ], [ 400, 402 ], [ 399, 403 ], [ 391, 404 ], [ 404, 405 ], [ 391, 406 ], [ 406, 407 ], [ 385, 408 ], [ 408, 409 ], [ 408, 410 ], [ 410, 411 ], [ 411, 412 ], [ 411, 413 ], [ 413, 414 ], [ 413, 415 ], [ 415, 416 ], [ 415, 417 ], [ 410, 418 ], [ 418, 419 ], [ 418, 420 ], [ 420, 421 ], [ 420, 422 ], [ 422, 423 ], [ 422, 424 ], [ 410, 425 ], [ 425, 426 ], [ 426, 427 ], [ 427, 428 ], [ 427, 429 ], [ 426, 430 ], [ 385, 431 ], [ 431, 432 ], [ 431, 433 ], [ 433, 434 ], [ 434, 435 ], [ 434, 436 ], [ 433, 437 ], [ 437, 438 ], [ 438, 439 ], [ 439, 440 ], [ 439, 441 ], [ 441, 442 ], [ 441, 443 ], [ 438, 444 ], [ 444, 445 ], [ 444, 446 ], [ 446, 447 ], [ 446, 448 ], [ 431, 449 ], [ 449, 450 ], [ 385, 451 ], [ 451, 452 ], [ 451, 453 ], [ 453, 454 ], [ 454, 455 ], [ 458, 456 ], [ 456, 457 ], [ 457, 458 ], [ 458, 459 ], [ 458, 460 ], [ 457, 461 ], [ 456, 462 ], [ 458, 463 ], [ 544, 464 ], [ 464, 465 ], [ 464, 466 ], [ 466, 467 ], [ 464, 468 ], [ 468, 469 ], [ 464, 470 ], [ 470, 471 ], [ 470, 472 ], [ 472, 473 ], [ 473, 474 ], [ 474, 475 ], [ 474, 476 ], [ 473, 477 ], [ 472, 478 ], [ 478, 479 ], [ 479, 480 ], [ 479, 481 ], [ 478, 482 ], [ 470, 483 ], [ 483, 484 ], [ 470, 485 ], [ 485, 486 ], [ 464, 487 ], [ 487, 488 ], [ 487, 489 ], [ 489, 490 ], [ 490, 491 ], [ 490, 492 ], [ 492, 493 ], [ 492, 494 ], [ 494, 495 ], [ 494, 496 ], [ 489, 497 ], [ 497, 498 ], [ 497, 499 ], [ 499, 500 ], [ 499, 501 ], [ 501, 502 ], [ 501, 503 ], [ 489, 504 ], [ 504, 505 ], [ 505, 506 ], [ 506, 507 ], [ 506, 508 ], [ 505, 509 ], [ 464, 510 ], [ 510, 511 ], [ 510, 512 ], [ 512, 513 ], [ 513, 514 ], [ 513, 515 ], [ 512, 516 ], [ 516, 517 ], [ 517, 518 ], [ 518, 519 ], [ 518, 520 ], [ 520, 521 ], [ 520, 522 ], [ 517, 523 ], [ 523, 524 ], [ 523, 525 ], [ 525, 526 ], [ 525, 527 ], [ 510, 528 ], [ 528, 529 ], [ 464, 530 ], [ 530, 531 ], [ 530, 532 ], [ 532, 533 ], [ 533, 534 ], [ 537, 535 ], [ 535, 536 ], [ 536, 537 ], [ 537, 538 ], [ 537, 539 ], [ 536, 540 ], [ 535, 541 ], [ 537, 542 ], [ 0, 543 ], [ 543, 544 ], [ 543, 545 ] ]
[ "/*****Author: Satyajeet Singh************************************/\n import java.io.*;\n import java.util.*;\n import java.text.*; \n import java.lang.*;\n import java.math.*;\npublic class Main{\n/*********************************************Constants******************************************/\n static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out)); \n static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n static long mod=(long)1e9+7;\n static long mod1=998244353;\n static ArrayList<Integer> graph[];\n static int pptr=0,pptrmax=0;\n static String st[];\n/*****************************************Solution Begins***************************************/ \n \n public static void main(String args[]) throws Exception{\n int tt=pi();\n int ans=0;\n if(tt==0)ans=1;\n out.println(ans);\n/****************************************Solution Ends**************************************************/\n clr();\n }\n static void clr(){\n out.flush();\n out.close();\n }\n static void nl() throws Exception{\n pptr=0;\n st=br.readLine().split(\" \");\n pptrmax=st.length;\n }\n static void nls() throws Exception{\n pptr=0;\n st=br.readLine().split(\"\");\n pptrmax=st.length;\n }\n static int pi() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Integer.parseInt(st[pptr++]);\n }\n static long pl() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Long.parseLong(st[pptr++]);\n }\n static double pd() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Double.parseDouble(st[pptr++]);\n }\n static String ps() throws Exception{\n if(pptr==pptrmax)\n nl();\n return st[pptr++];\n }\n/***************************************Precision Printing**********************************************/\n static void printPrecision(double d){\n DecimalFormat ft = new DecimalFormat(\"0.00000000000\"); \n out.println(ft.format(d));\n }\n/**************************************Bit Manipulation**************************************************/\n static int countBit(long mask){\n int ans=0;\n while(mask!=0){\n mask&=(mask-1);\n ans++;\n }\n return ans;\n }\n/******************************************Graph*********************************************************/\n static void Makegraph(int n){\n graph=new ArrayList[n];\n for(int i=0;i<n;i++)\n graph[i]=new ArrayList<>();\n }\n static void addEdge(int a,int b){\n graph[a].add(b);\n }\n // static void addEdge(int a,int b,int c){\n // graph[a].add(new Pair(b,c));\n // } \n/*********************************************PAIR********************************************************/\n static class Pair{\n int u;\n int v;\n public Pair(int u, int v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pair other = (Pair) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }\n/******************************************Long Pair*******************************************************/\n static class Pairl{\n long u;\n long v;\n public Pairl(long u, long v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pairl other = (Pairl) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }\n/*****************************************DEBUG***********************************************************/\n public static void debug(Object... o){\n System.out.println(Arrays.deepToString(o));\n }\n/************************************MODULAR EXPONENTIATION***********************************************/\n static long modulo(long a,long b,long c){\n long x=1,y=a%c;\n while(b > 0){\n if(b%2 == 1)\n x=(x*y)%c;\n y = (y*y)%c;\n b = b>>1;\n }\n return x%c;\n }\n/********************************************GCD**********************************************************/\n static long gcd(long x, long y){\n if(x==0)\n return y;\n if(y==0)\n return x;\n long r=0, a, b;\n a = (x > y) ? x : y; \n b = (x < y) ? x : y;\n r = b;\n while(a % b != 0){\n r = a % b;\n a = b;\n b = r;\n }\n return r;\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "import java.text.*;", "text.*", "java", "import java.lang.*;", "lang.*", "java", "import java.math.*;", "math.*", "java", "public class Main{\n/*********************************************Constants******************************************/\n static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out)); \n static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n static long mod=(long)1e9+7;\n static long mod1=998244353;\n static ArrayList<Integer> graph[];\n static int pptr=0,pptrmax=0;\n static String st[];\n/*****************************************Solution Begins***************************************/ \n \n public static void main(String args[]) throws Exception{\n int tt=pi();\n int ans=0;\n if(tt==0)ans=1;\n out.println(ans);\n/****************************************Solution Ends**************************************************/\n clr();\n }\n static void clr(){\n out.flush();\n out.close();\n }\n static void nl() throws Exception{\n pptr=0;\n st=br.readLine().split(\" \");\n pptrmax=st.length;\n }\n static void nls() throws Exception{\n pptr=0;\n st=br.readLine().split(\"\");\n pptrmax=st.length;\n }\n static int pi() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Integer.parseInt(st[pptr++]);\n }\n static long pl() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Long.parseLong(st[pptr++]);\n }\n static double pd() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Double.parseDouble(st[pptr++]);\n }\n static String ps() throws Exception{\n if(pptr==pptrmax)\n nl();\n return st[pptr++];\n }\n/***************************************Precision Printing**********************************************/\n static void printPrecision(double d){\n DecimalFormat ft = new DecimalFormat(\"0.00000000000\"); \n out.println(ft.format(d));\n }\n/**************************************Bit Manipulation**************************************************/\n static int countBit(long mask){\n int ans=0;\n while(mask!=0){\n mask&=(mask-1);\n ans++;\n }\n return ans;\n }\n/******************************************Graph*********************************************************/\n static void Makegraph(int n){\n graph=new ArrayList[n];\n for(int i=0;i<n;i++)\n graph[i]=new ArrayList<>();\n }\n static void addEdge(int a,int b){\n graph[a].add(b);\n }\n // static void addEdge(int a,int b,int c){\n // graph[a].add(new Pair(b,c));\n // } \n/*********************************************PAIR********************************************************/\n static class Pair{\n int u;\n int v;\n public Pair(int u, int v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pair other = (Pair) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }\n/******************************************Long Pair*******************************************************/\n static class Pairl{\n long u;\n long v;\n public Pairl(long u, long v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pairl other = (Pairl) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }\n/*****************************************DEBUG***********************************************************/\n public static void debug(Object... o){\n System.out.println(Arrays.deepToString(o));\n }\n/************************************MODULAR EXPONENTIATION***********************************************/\n static long modulo(long a,long b,long c){\n long x=1,y=a%c;\n while(b > 0){\n if(b%2 == 1)\n x=(x*y)%c;\n y = (y*y)%c;\n b = b>>1;\n }\n return x%c;\n }\n/********************************************GCD**********************************************************/\n static long gcd(long x, long y){\n if(x==0)\n return y;\n if(y==0)\n return x;\n long r=0, a, b;\n a = (x > y) ? x : y; \n b = (x < y) ? x : y;\n r = b;\n while(a % b != 0){\n r = a % b;\n a = b;\n b = r;\n }\n return r;\n }\n}", "Main", "/*********************************************Constants******************************************/\n static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out));", "out", "new PrintWriter(new OutputStreamWriter(System.out))", "static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "static long mod=(long)1e9+7;", "mod", "(long)1e9+7", "(long)1e9", "7", "static long mod1=998244353;", "mod1", "998244353", "static ArrayList<Integer> graph[];", "graph", "static int pptr=0", "pptr", "0", "pptrmax=0;", "pptrmax", "0", "static String st[];", "st", "/*****************************************Solution Begins***************************************/ \n \n public static void main(String args[]) throws Exception{\n int tt=pi();\n int ans=0;\n if(tt==0)ans=1;\n out.println(ans);\n/****************************************Solution Ends**************************************************/\n clr();\n }", "main", "{\n int tt=pi();\n int ans=0;\n if(tt==0)ans=1;\n out.println(ans);\n/****************************************Solution Ends**************************************************/\n clr();\n }", "int tt=pi();", "tt", "pi()", "pi", "int ans=0;", "ans", "0", "if(tt==0)ans=1;", "tt==0", "tt", "0", "ans=1", "ans", "1", "out.println(ans)", "out.println", "out", "ans", "clr()", "clr", "String args[]", "args", "static void clr(){\n out.flush();\n out.close();\n }", "clr", "{\n out.flush();\n out.close();\n }", "out.flush()", "out.flush", "out", "out.close()", "out.close", "out", "static void nl() throws Exception{\n pptr=0;\n st=br.readLine().split(\" \");\n pptrmax=st.length;\n }", "nl", "{\n pptr=0;\n st=br.readLine().split(\" \");\n pptrmax=st.length;\n }", "pptr=0", "pptr", "0", "st=br.readLine().split(\" \")", "st", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "pptrmax=st.length", "pptrmax", "st.length", "st", "st.length", "static void nls() throws Exception{\n pptr=0;\n st=br.readLine().split(\"\");\n pptrmax=st.length;\n }", "nls", "{\n pptr=0;\n st=br.readLine().split(\"\");\n pptrmax=st.length;\n }", "pptr=0", "pptr", "0", "st=br.readLine().split(\"\")", "st", "br.readLine().split(\"\")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\"\"", "pptrmax=st.length", "pptrmax", "st.length", "st", "st.length", "static int pi() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Integer.parseInt(st[pptr++]);\n }", "pi", "{\n if(pptr==pptrmax)\n nl();\n return Integer.parseInt(st[pptr++]);\n }", "if(pptr==pptrmax)\n nl();", "pptr==pptrmax", "pptr", "pptrmax", "nl()", "nl", "return Integer.parseInt(st[pptr++]);", "Integer.parseInt(st[pptr++])", "Integer.parseInt", "Integer", "st[pptr++]", "st", "pptr++", "pptr", "static long pl() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Long.parseLong(st[pptr++]);\n }", "pl", "{\n if(pptr==pptrmax)\n nl();\n return Long.parseLong(st[pptr++]);\n }", "if(pptr==pptrmax)\n nl();", "pptr==pptrmax", "pptr", "pptrmax", "nl()", "nl", "return Long.parseLong(st[pptr++]);", "Long.parseLong(st[pptr++])", "Long.parseLong", "Long", "st[pptr++]", "st", "pptr++", "pptr", "static double pd() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Double.parseDouble(st[pptr++]);\n }", "pd", "{\n if(pptr==pptrmax)\n nl();\n return Double.parseDouble(st[pptr++]);\n }", "if(pptr==pptrmax)\n nl();", "pptr==pptrmax", "pptr", "pptrmax", "nl()", "nl", "return Double.parseDouble(st[pptr++]);", "Double.parseDouble(st[pptr++])", "Double.parseDouble", "Double", "st[pptr++]", "st", "pptr++", "pptr", "static String ps() throws Exception{\n if(pptr==pptrmax)\n nl();\n return st[pptr++];\n }", "ps", "{\n if(pptr==pptrmax)\n nl();\n return st[pptr++];\n }", "if(pptr==pptrmax)\n nl();", "pptr==pptrmax", "pptr", "pptrmax", "nl()", "nl", "return st[pptr++];", "st[pptr++]", "st", "pptr++", "pptr", "/***************************************Precision Printing**********************************************/\n static void printPrecision(double d){\n DecimalFormat ft = new DecimalFormat(\"0.00000000000\"); \n out.println(ft.format(d));\n }", "printPrecision", "{\n DecimalFormat ft = new DecimalFormat(\"0.00000000000\"); \n out.println(ft.format(d));\n }", "DecimalFormat ft = new DecimalFormat(\"0.00000000000\");", "ft", "new DecimalFormat(\"0.00000000000\")", "out.println(ft.format(d))", "out.println", "out", "ft.format(d)", "ft.format", "ft", "d", "double d", "d", "/**************************************Bit Manipulation**************************************************/\n static int countBit(long mask){\n int ans=0;\n while(mask!=0){\n mask&=(mask-1);\n ans++;\n }\n return ans;\n }", "countBit", "{\n int ans=0;\n while(mask!=0){\n mask&=(mask-1);\n ans++;\n }\n return ans;\n }", "int ans=0;", "ans", "0", "while(mask!=0){\n mask&=(mask-1);\n ans++;\n }", "mask!=0", "mask", "0", "{\n mask&=(mask-1);\n ans++;\n }", "mask&=(mask-1)", "mask", "(mask-1)", "mask", "1", "ans++", "ans", "return ans;", "ans", "long mask", "mask", "/******************************************Graph*********************************************************/\n static void Makegraph(int n){\n graph=new ArrayList[n];\n for(int i=0;i<n;i++)\n graph[i]=new ArrayList<>();\n }", "Makegraph", "{\n graph=new ArrayList[n];\n for(int i=0;i<n;i++)\n graph[i]=new ArrayList<>();\n }", "graph=new ArrayList[n]", "graph", "new ArrayList[n]", "n", "for(int i=0;i<n;i++)\n graph[i]=new ArrayList<>();", "int i=0;", "int i=0;", "i", "0", "i<n", "i", "n", "i++", "i++", "i", "graph[i]=new ArrayList<>();", "graph[i]=new ArrayList<>()", "graph[i]", "graph", "i", "new ArrayList<>()", "int n", "n", "static void addEdge(int a,int b){\n graph[a].add(b);\n }", "addEdge", "{\n graph[a].add(b);\n }", "graph[a].add(b)", "graph[a].add", "graph[a]", "graph", "a", "b", "int a", "a", "int b", "b", "/*****************************************DEBUG***********************************************************/\n public static void debug(Object... o){\n System.out.println(Arrays.deepToString(o));\n }", "debug", "{\n System.out.println(Arrays.deepToString(o));\n }", "System.out.println(Arrays.deepToString(o))", "System.out.println", "System.out", "System", "System.out", "Arrays.deepToString(o)", "Arrays.deepToString", "Arrays", "o", "Object... o", "o", "/************************************MODULAR EXPONENTIATION***********************************************/\n static long modulo(long a,long b,long c){\n long x=1,y=a%c;\n while(b > 0){\n if(b%2 == 1)\n x=(x*y)%c;\n y = (y*y)%c;\n b = b>>1;\n }\n return x%c;\n }", "modulo", "{\n long x=1,y=a%c;\n while(b > 0){\n if(b%2 == 1)\n x=(x*y)%c;\n y = (y*y)%c;\n b = b>>1;\n }\n return x%c;\n }", "long x=1", "x", "1", "y=a%c;", "y", "a%c", "a", "c", "while(b > 0){\n if(b%2 == 1)\n x=(x*y)%c;\n y = (y*y)%c;\n b = b>>1;\n }", "b > 0", "b", "0", "{\n if(b%2 == 1)\n x=(x*y)%c;\n y = (y*y)%c;\n b = b>>1;\n }", "if(b%2 == 1)\n x=(x*y)%c;", "b%2 == 1", "b%2", "b", "2", "1", "x=(x*y)%c", "x", "(x*y)%c", "(x*y)", "x", "y", "c", "y = (y*y)%c", "y", "(y*y)%c", "(y*y)", "y", "y", "c", "b = b>>1", "b", "b>>1", "b", "1", "return x%c;", "x%c", "x", "c", "long a", "a", "long b", "b", "long c", "c", "/********************************************GCD**********************************************************/\n static long gcd(long x, long y){\n if(x==0)\n return y;\n if(y==0)\n return x;\n long r=0, a, b;\n a = (x > y) ? x : y; \n b = (x < y) ? x : y;\n r = b;\n while(a % b != 0){\n r = a % b;\n a = b;\n b = r;\n }\n return r;\n }", "gcd", "{\n if(x==0)\n return y;\n if(y==0)\n return x;\n long r=0, a, b;\n a = (x > y) ? x : y; \n b = (x < y) ? x : y;\n r = b;\n while(a % b != 0){\n r = a % b;\n a = b;\n b = r;\n }\n return r;\n }", "if(x==0)\n return y;", "x==0", "x", "0", "return y;", "y", "if(y==0)\n return x;", "y==0", "y", "0", "return x;", "x", "long r=0", "r", "0", "a", "a", "b;", "b", "a = (x > y) ? x : y", "a", "(x > y) ? x : y", "(x > y)", "x", "y", "x", "y", "b = (x < y) ? x : y", "b", "(x < y) ? x : y", "(x < y)", "x", "y", "x", "y", "r = b", "r", "b", "while(a % b != 0){\n r = a % b;\n a = b;\n b = r;\n }", "a % b != 0", "a % b", "a", "b", "0", "{\n r = a % b;\n a = b;\n b = r;\n }", "r = a % b", "r", "a % b", "a", "b", "a = b", "a", "b", "b = r", "b", "r", "return r;", "r", "long x", "x", "long y", "y", " static class Pair{\n int u;\n int v;\n public Pair(int u, int v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pair other = (Pair) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }", "Pair", "int u;", "u", "int v;", "v", "public Pair(int u, int v) {\n this.u = u;\n this.v = v;\n }", "Pair", "{\n this.u = u;\n this.v = v;\n }", "this.u = u", "this.u", "this", "this.u", "u", "this.v = v", "this.v", "this", "this.v", "v", "int u", "u", "int v", "v", "public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }", "hashCode", "{\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }", "int hu = (int) (u ^ (u >>> 32));", "hu", "(int) (u ^ (u >>> 32))", "u", "(u >>> 32)", "u", "32", "int hv = (int) (v ^ (v >>> 32));", "hv", "(int) (v ^ (v >>> 32))", "v", "(v >>> 32)", "v", "32", "return 31 * hu + hv;", "31 * hu + hv", "31 * hu", "31", "hu", "hv", "public boolean equals(Object o) {\n Pair other = (Pair) o;\n return u == other.u && v == other.v;\n }", "equals", "{\n Pair other = (Pair) o;\n return u == other.u && v == other.v;\n }", "Pair other = (Pair) o;", "other", "(Pair) o", "return u == other.u && v == other.v;", "u == other.u && v == other.v", "u == other.u", "u", "other.u", "other", "other.u", "v == other.v", "v", "other.v", "other", "other.v", "Object o", "o", "public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }", "toString", "{\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }", "return \"[u=\" + u + \", v=\" + v + \"]\";", "\"[u=\" + u + \", v=\" + v + \"]\"", "v", "\", v=\"", "\"[u=\" + u + \", v=\" + v + \"]\"", "\"[u=\"", "u", "\", v=\"", "v", "\"]\"", " static class Pairl{\n long u;\n long v;\n public Pairl(long u, long v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pairl other = (Pairl) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }", "Pairl", "long u;", "u", "long v;", "v", "public Pairl(long u, long v) {\n this.u = u;\n this.v = v;\n }", "Pairl", "{\n this.u = u;\n this.v = v;\n }", "this.u = u", "this.u", "this", "this.u", "u", "this.v = v", "this.v", "this", "this.v", "v", "long u", "u", "long v", "v", "public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }", "hashCode", "{\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }", "int hu = (int) (u ^ (u >>> 32));", "hu", "(int) (u ^ (u >>> 32))", "u", "(u >>> 32)", "u", "32", "int hv = (int) (v ^ (v >>> 32));", "hv", "(int) (v ^ (v >>> 32))", "v", "(v >>> 32)", "v", "32", "return 31 * hu + hv;", "31 * hu + hv", "31 * hu", "31", "hu", "hv", "public boolean equals(Object o) {\n Pairl other = (Pairl) o;\n return u == other.u && v == other.v;\n }", "equals", "{\n Pairl other = (Pairl) o;\n return u == other.u && v == other.v;\n }", "Pairl other = (Pairl) o;", "other", "(Pairl) o", "return u == other.u && v == other.v;", "u == other.u && v == other.v", "u == other.u", "u", "other.u", "other", "other.u", "v == other.v", "v", "other.v", "other", "other.v", "Object o", "o", "public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }", "toString", "{\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }", "return \"[u=\" + u + \", v=\" + v + \"]\";", "\"[u=\" + u + \", v=\" + v + \"]\"", "v", "\", v=\"", "\"[u=\" + u + \", v=\" + v + \"]\"", "\"[u=\"", "u", "\", v=\"", "v", "\"]\"", "public class Main{\n/*********************************************Constants******************************************/\n static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out)); \n static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n static long mod=(long)1e9+7;\n static long mod1=998244353;\n static ArrayList<Integer> graph[];\n static int pptr=0,pptrmax=0;\n static String st[];\n/*****************************************Solution Begins***************************************/ \n \n public static void main(String args[]) throws Exception{\n int tt=pi();\n int ans=0;\n if(tt==0)ans=1;\n out.println(ans);\n/****************************************Solution Ends**************************************************/\n clr();\n }\n static void clr(){\n out.flush();\n out.close();\n }\n static void nl() throws Exception{\n pptr=0;\n st=br.readLine().split(\" \");\n pptrmax=st.length;\n }\n static void nls() throws Exception{\n pptr=0;\n st=br.readLine().split(\"\");\n pptrmax=st.length;\n }\n static int pi() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Integer.parseInt(st[pptr++]);\n }\n static long pl() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Long.parseLong(st[pptr++]);\n }\n static double pd() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Double.parseDouble(st[pptr++]);\n }\n static String ps() throws Exception{\n if(pptr==pptrmax)\n nl();\n return st[pptr++];\n }\n/***************************************Precision Printing**********************************************/\n static void printPrecision(double d){\n DecimalFormat ft = new DecimalFormat(\"0.00000000000\"); \n out.println(ft.format(d));\n }\n/**************************************Bit Manipulation**************************************************/\n static int countBit(long mask){\n int ans=0;\n while(mask!=0){\n mask&=(mask-1);\n ans++;\n }\n return ans;\n }\n/******************************************Graph*********************************************************/\n static void Makegraph(int n){\n graph=new ArrayList[n];\n for(int i=0;i<n;i++)\n graph[i]=new ArrayList<>();\n }\n static void addEdge(int a,int b){\n graph[a].add(b);\n }\n // static void addEdge(int a,int b,int c){\n // graph[a].add(new Pair(b,c));\n // } \n/*********************************************PAIR********************************************************/\n static class Pair{\n int u;\n int v;\n public Pair(int u, int v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pair other = (Pair) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }\n/******************************************Long Pair*******************************************************/\n static class Pairl{\n long u;\n long v;\n public Pairl(long u, long v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pairl other = (Pairl) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }\n/*****************************************DEBUG***********************************************************/\n public static void debug(Object... o){\n System.out.println(Arrays.deepToString(o));\n }\n/************************************MODULAR EXPONENTIATION***********************************************/\n static long modulo(long a,long b,long c){\n long x=1,y=a%c;\n while(b > 0){\n if(b%2 == 1)\n x=(x*y)%c;\n y = (y*y)%c;\n b = b>>1;\n }\n return x%c;\n }\n/********************************************GCD**********************************************************/\n static long gcd(long x, long y){\n if(x==0)\n return y;\n if(y==0)\n return x;\n long r=0, a, b;\n a = (x > y) ? x : y; \n b = (x < y) ? x : y;\n r = b;\n while(a % b != 0){\n r = a % b;\n a = b;\n b = r;\n }\n return r;\n }\n}", "public class Main{\n/*********************************************Constants******************************************/\n static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out)); \n static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n static long mod=(long)1e9+7;\n static long mod1=998244353;\n static ArrayList<Integer> graph[];\n static int pptr=0,pptrmax=0;\n static String st[];\n/*****************************************Solution Begins***************************************/ \n \n public static void main(String args[]) throws Exception{\n int tt=pi();\n int ans=0;\n if(tt==0)ans=1;\n out.println(ans);\n/****************************************Solution Ends**************************************************/\n clr();\n }\n static void clr(){\n out.flush();\n out.close();\n }\n static void nl() throws Exception{\n pptr=0;\n st=br.readLine().split(\" \");\n pptrmax=st.length;\n }\n static void nls() throws Exception{\n pptr=0;\n st=br.readLine().split(\"\");\n pptrmax=st.length;\n }\n static int pi() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Integer.parseInt(st[pptr++]);\n }\n static long pl() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Long.parseLong(st[pptr++]);\n }\n static double pd() throws Exception{\n if(pptr==pptrmax)\n nl();\n return Double.parseDouble(st[pptr++]);\n }\n static String ps() throws Exception{\n if(pptr==pptrmax)\n nl();\n return st[pptr++];\n }\n/***************************************Precision Printing**********************************************/\n static void printPrecision(double d){\n DecimalFormat ft = new DecimalFormat(\"0.00000000000\"); \n out.println(ft.format(d));\n }\n/**************************************Bit Manipulation**************************************************/\n static int countBit(long mask){\n int ans=0;\n while(mask!=0){\n mask&=(mask-1);\n ans++;\n }\n return ans;\n }\n/******************************************Graph*********************************************************/\n static void Makegraph(int n){\n graph=new ArrayList[n];\n for(int i=0;i<n;i++)\n graph[i]=new ArrayList<>();\n }\n static void addEdge(int a,int b){\n graph[a].add(b);\n }\n // static void addEdge(int a,int b,int c){\n // graph[a].add(new Pair(b,c));\n // } \n/*********************************************PAIR********************************************************/\n static class Pair{\n int u;\n int v;\n public Pair(int u, int v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pair other = (Pair) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }\n/******************************************Long Pair*******************************************************/\n static class Pairl{\n long u;\n long v;\n public Pairl(long u, long v) {\n this.u = u;\n this.v = v;\n }\n public int hashCode() {\n int hu = (int) (u ^ (u >>> 32));\n int hv = (int) (v ^ (v >>> 32));\n return 31 * hu + hv;\n }\n public boolean equals(Object o) {\n Pairl other = (Pairl) o;\n return u == other.u && v == other.v;\n }\n public String toString() {\n return \"[u=\" + u + \", v=\" + v + \"]\";\n }\n }\n/*****************************************DEBUG***********************************************************/\n public static void debug(Object... o){\n System.out.println(Arrays.deepToString(o));\n }\n/************************************MODULAR EXPONENTIATION***********************************************/\n static long modulo(long a,long b,long c){\n long x=1,y=a%c;\n while(b > 0){\n if(b%2 == 1)\n x=(x*y)%c;\n y = (y*y)%c;\n b = b>>1;\n }\n return x%c;\n }\n/********************************************GCD**********************************************************/\n static long gcd(long x, long y){\n if(x==0)\n return y;\n if(y==0)\n return x;\n long r=0, a, b;\n a = (x > y) ? x : y; \n b = (x < y) ? x : y;\n r = b;\n while(a % b != 0){\n r = a % b;\n a = b;\n b = r;\n }\n return r;\n }\n}", "Main" ]
/*****Author: Satyajeet Singh************************************/ import java.io.*; import java.util.*; import java.text.*; import java.lang.*; import java.math.*; public class Main{ /*********************************************Constants******************************************/ static PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out)); static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static long mod=(long)1e9+7; static long mod1=998244353; static ArrayList<Integer> graph[]; static int pptr=0,pptrmax=0; static String st[]; /*****************************************Solution Begins***************************************/ public static void main(String args[]) throws Exception{ int tt=pi(); int ans=0; if(tt==0)ans=1; out.println(ans); /****************************************Solution Ends**************************************************/ clr(); } static void clr(){ out.flush(); out.close(); } static void nl() throws Exception{ pptr=0; st=br.readLine().split(" "); pptrmax=st.length; } static void nls() throws Exception{ pptr=0; st=br.readLine().split(""); pptrmax=st.length; } static int pi() throws Exception{ if(pptr==pptrmax) nl(); return Integer.parseInt(st[pptr++]); } static long pl() throws Exception{ if(pptr==pptrmax) nl(); return Long.parseLong(st[pptr++]); } static double pd() throws Exception{ if(pptr==pptrmax) nl(); return Double.parseDouble(st[pptr++]); } static String ps() throws Exception{ if(pptr==pptrmax) nl(); return st[pptr++]; } /***************************************Precision Printing**********************************************/ static void printPrecision(double d){ DecimalFormat ft = new DecimalFormat("0.00000000000"); out.println(ft.format(d)); } /**************************************Bit Manipulation**************************************************/ static int countBit(long mask){ int ans=0; while(mask!=0){ mask&=(mask-1); ans++; } return ans; } /******************************************Graph*********************************************************/ static void Makegraph(int n){ graph=new ArrayList[n]; for(int i=0;i<n;i++) graph[i]=new ArrayList<>(); } static void addEdge(int a,int b){ graph[a].add(b); } // static void addEdge(int a,int b,int c){ // graph[a].add(new Pair(b,c)); // } /*********************************************PAIR********************************************************/ static class Pair{ int u; int v; public Pair(int u, int v) { this.u = u; this.v = v; } public int hashCode() { int hu = (int) (u ^ (u >>> 32)); int hv = (int) (v ^ (v >>> 32)); return 31 * hu + hv; } public boolean equals(Object o) { Pair other = (Pair) o; return u == other.u && v == other.v; } public String toString() { return "[u=" + u + ", v=" + v + "]"; } } /******************************************Long Pair*******************************************************/ static class Pairl{ long u; long v; public Pairl(long u, long v) { this.u = u; this.v = v; } public int hashCode() { int hu = (int) (u ^ (u >>> 32)); int hv = (int) (v ^ (v >>> 32)); return 31 * hu + hv; } public boolean equals(Object o) { Pairl other = (Pairl) o; return u == other.u && v == other.v; } public String toString() { return "[u=" + u + ", v=" + v + "]"; } } /*****************************************DEBUG***********************************************************/ public static void debug(Object... o){ System.out.println(Arrays.deepToString(o)); } /************************************MODULAR EXPONENTIATION***********************************************/ static long modulo(long a,long b,long c){ long x=1,y=a%c; while(b > 0){ if(b%2 == 1) x=(x*y)%c; y = (y*y)%c; b = b>>1; } return x%c; } /********************************************GCD**********************************************************/ static long gcd(long x, long y){ if(x==0) return y; if(y==0) return x; long r=0, a, b; a = (x > y) ? x : y; b = (x < y) ? x : y; r = b; while(a % b != 0){ r = a % b; a = b; b = r; } return r; } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 14, 2, 13, 17, 29, 17, 29, 17, 23, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 13, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 48, 5 ], [ 48, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 10, 11 ], [ 10, 12 ], [ 9, 13 ], [ 13, 14 ], [ 9, 15 ], [ 15, 16 ], [ 6, 17 ], [ 17, 18 ], [ 48, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 22, 24 ], [ 21, 25 ], [ 25, 26 ], [ 25, 27 ], [ 21, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 21, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 35, 38 ], [ 21, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 39, 44 ], [ 19, 45 ], [ 45, 46 ], [ 0, 47 ], [ 47, 48 ], [ 47, 49 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n public int operateNot(int x) {\n if (x == 0) return 1;\n else return 0;\n }\n\n public static void main(String[] args) throws Exception {\n Main solution = new Main();\n\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n\n int answer = solution.operateNot(x);\n System.out.println(answer);\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public int operateNot(int x) {\n if (x == 0) return 1;\n else return 0;\n }\n\n public static void main(String[] args) throws Exception {\n Main solution = new Main();\n\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n\n int answer = solution.operateNot(x);\n System.out.println(answer);\n }\n}", "Main", "public int operateNot(int x) {\n if (x == 0) return 1;\n else return 0;\n }", "operateNot", "{\n if (x == 0) return 1;\n else return 0;\n }", "if (x == 0) return 1;\n else return 0;", "x == 0", "x", "0", "return 1;", "1", "return 0;", "0", "int x", "x", "public static void main(String[] args) throws Exception {\n Main solution = new Main();\n\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n\n int answer = solution.operateNot(x);\n System.out.println(answer);\n }", "main", "{\n Main solution = new Main();\n\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n\n int answer = solution.operateNot(x);\n System.out.println(answer);\n }", "Main solution = new Main();", "solution", "new Main()", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int x = scanner.nextInt();", "x", "scanner.nextInt()", "scanner.nextInt", "scanner", "int answer = solution.operateNot(x);", "answer", "solution.operateNot(x)", "solution.operateNot", "solution", "x", "System.out.println(answer)", "System.out.println", "System.out", "System", "System.out", "answer", "String[] args", "args", "public class Main {\n public int operateNot(int x) {\n if (x == 0) return 1;\n else return 0;\n }\n\n public static void main(String[] args) throws Exception {\n Main solution = new Main();\n\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n\n int answer = solution.operateNot(x);\n System.out.println(answer);\n }\n}", "public class Main {\n public int operateNot(int x) {\n if (x == 0) return 1;\n else return 0;\n }\n\n public static void main(String[] args) throws Exception {\n Main solution = new Main();\n\n Scanner scanner = new Scanner(System.in);\n int x = scanner.nextInt();\n\n int answer = solution.operateNot(x);\n System.out.println(answer);\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public int operateNot(int x) { if (x == 0) return 1; else return 0; } public static void main(String[] args) throws Exception { Main solution = new Main(); Scanner scanner = new Scanner(System.in); int x = scanner.nextInt(); int answer = solution.operateNot(x); System.out.println(answer); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 45, 8 ], [ 45, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 25, 30 ], [ 20, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 35, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 36, 41 ], [ 9, 42 ], [ 42, 43 ], [ 0, 44 ], [ 44, 45 ], [ 44, 46 ] ]
[ "import java.io.*;\nimport java.util.*;\n\npublic class Main {\n\n public static void main(String[] args) throws Exception {\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n if(x==0){\n \tSystem.out.println(1);\n }else if(x==1){\n \tSystem.out.println(0);\n }\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "public class Main {\n\n public static void main(String[] args) throws Exception {\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n if(x==0){\n \tSystem.out.println(1);\n }else if(x==1){\n \tSystem.out.println(0);\n }\n }\n}", "Main", "public static void main(String[] args) throws Exception {\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n if(x==0){\n \tSystem.out.println(1);\n }else if(x==1){\n \tSystem.out.println(0);\n }\n }", "main", "{\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n if(x==0){\n \tSystem.out.println(1);\n }else if(x==1){\n \tSystem.out.println(0);\n }\n }", "Scanner scn = new Scanner(System.in);", "scn", "new Scanner(System.in)", "int x = scn.nextInt();", "x", "scn.nextInt()", "scn.nextInt", "scn", "if(x==0){\n \tSystem.out.println(1);\n }else if(x==1){\n \tSystem.out.println(0);\n }", "x==0", "x", "0", "{\n \tSystem.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "if(x==1){\n \tSystem.out.println(0);\n }", "x==1", "x", "1", "{\n \tSystem.out.println(0);\n }", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) throws Exception {\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n if(x==0){\n \tSystem.out.println(1);\n }else if(x==1){\n \tSystem.out.println(0);\n }\n }\n}", "public class Main {\n\n public static void main(String[] args) throws Exception {\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n if(x==0){\n \tSystem.out.println(1);\n }else if(x==1){\n \tSystem.out.println(0);\n }\n }\n}", "Main" ]
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner scn = new Scanner(System.in); int x = scn.nextInt(); if(x==0){ System.out.println(1); }else if(x==1){ System.out.println(0); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 13, 0, 13, 8, 2, 13, 17, 17, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 40, 5 ], [ 40, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 19, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 25, 29 ], [ 25, 30 ], [ 8, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 31, 36 ], [ 6, 37 ], [ 37, 38 ], [ 0, 39 ], [ 39, 40 ], [ 39, 41 ] ]
[ "import java.util.*;\n\n\npublic class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n int ret = Integer.parseInt(line);\n ret = ret == 0 ? 1 : 0;\n \n System.out.println(ret);\n }\n}", "import java.util.*;", "util.*", "java", "public class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n int ret = Integer.parseInt(line);\n ret = ret == 0 ? 1 : 0;\n \n System.out.println(ret);\n }\n}", "Main", "public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n int ret = Integer.parseInt(line);\n ret = ret == 0 ? 1 : 0;\n \n System.out.println(ret);\n }", "main", "{\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n int ret = Integer.parseInt(line);\n ret = ret == 0 ? 1 : 0;\n \n System.out.println(ret);\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String line = sc.nextLine();", "line", "sc.nextLine()", "sc.nextLine", "sc", "int ret = Integer.parseInt(line);", "ret", "Integer.parseInt(line)", "Integer.parseInt", "Integer", "line", "ret = ret == 0 ? 1 : 0", "ret", "ret == 0 ? 1 : 0", "ret == 0", "ret", "0", "1", "0", "System.out.println(ret)", "System.out.println", "System.out", "System", "System.out", "ret", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n int ret = Integer.parseInt(line);\n ret = ret == 0 ? 1 : 0;\n \n System.out.println(ret);\n }\n}", "public class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n int ret = Integer.parseInt(line);\n ret = ret == 0 ? 1 : 0;\n \n System.out.println(ret);\n }\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String line = sc.nextLine(); int ret = Integer.parseInt(line); ret = ret == 0 ? 1 : 0; System.out.println(ret); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 38, 5 ], [ 38, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 17, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 6, 35 ], [ 35, 36 ], [ 0, 37 ], [ 37, 38 ], [ 37, 39 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n\n if(a == 0) {\n System.out.println(1);\n }\n else{\n System.out.print(0);\n }\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n\n if(a == 0) {\n System.out.println(1);\n }\n else{\n System.out.print(0);\n }\n }\n}", "Main", "public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n\n if(a == 0) {\n System.out.println(1);\n }\n else{\n System.out.print(0);\n }\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n\n if(a == 0) {\n System.out.println(1);\n }\n else{\n System.out.print(0);\n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int a = sc.nextInt();", "a", "sc.nextInt()", "sc.nextInt", "sc", "if(a == 0) {\n System.out.println(1);\n }\n else{\n System.out.print(0);\n }", "a == 0", "a", "0", "{\n System.out.println(1);\n }", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "{\n System.out.print(0);\n }", "System.out.print(0)", "System.out.print", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n\n if(a == 0) {\n System.out.println(1);\n }\n else{\n System.out.print(0);\n }\n }\n}", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n\n if(a == 0) {\n System.out.println(1);\n }\n else{\n System.out.print(0);\n }\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); if(a == 0) { System.out.println(1); } else{ System.out.print(0); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 41, 13, 20, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 8, 2, 13, 17, 17, 17, 4, 18, 18, 13, 13, 4, 18, 13, 23, 13, 6, 13, 41, 13, 20, 41, 13, 20, 12, 13, 30, 42, 40, 4, 18, 13, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 185, 17 ], [ 185, 18 ], [ 18, 19 ], [ 18, 20 ], [ 185, 21 ], [ 21, 22 ], [ 21, 23 ], [ 185, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 26, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 26, 35 ], [ 35, 36 ], [ 36, 37 ], [ 35, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 38, 42 ], [ 38, 43 ], [ 26, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 49, 50 ], [ 50, 51 ], [ 24, 52 ], [ 52, 53 ], [ 185, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 56, 58 ], [ 54, 59 ], [ 59, 60 ], [ 59, 61 ], [ 54, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 65, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 70, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 64, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 54, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 89, 92 ], [ 92, 93 ], [ 54, 94 ], [ 94, 95 ], [ 94, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 96, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 101, 106 ], [ 106, 107 ], [ 106, 108 ], [ 101, 109 ], [ 109, 110 ], [ 110, 111 ], [ 101, 112 ], [ 112, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 117 ], [ 117, 118 ], [ 96, 119 ], [ 119, 120 ], [ 94, 121 ], [ 121, 122 ], [ 54, 123 ], [ 123, 124 ], [ 123, 125 ], [ 125, 126 ], [ 126, 127 ], [ 127, 128 ], [ 128, 129 ], [ 127, 130 ], [ 130, 131 ], [ 54, 132 ], [ 132, 133 ], [ 132, 134 ], [ 134, 135 ], [ 135, 136 ], [ 135, 137 ], [ 134, 139 ], [ 139, 140 ], [ 140, 141 ], [ 141, 142 ], [ 141, 143 ], [ 139, 144 ], [ 144, 145 ], [ 144, 146 ], [ 139, 147 ], [ 147, 148 ], [ 148, 149 ], [ 139, 150 ], [ 150, 151 ], [ 151, 152 ], [ 152, 153 ], [ 152, 154 ], [ 151, 155 ], [ 155, 156 ], [ 134, 157 ], [ 157, 158 ], [ 132, 159 ], [ 159, 160 ], [ 185, 161 ], [ 161, 162 ], [ 161, 163 ], [ 163, 164 ], [ 161, 165 ], [ 165, 166 ], [ 161, 167 ], [ 167, 168 ], [ 167, 169 ], [ 169, 170 ], [ 170, 171 ], [ 171, 172 ], [ 171, 173 ], [ 170, 174 ], [ 169, 175 ], [ 175, 176 ], [ 176, 177 ], [ 176, 178 ], [ 175, 179 ], [ 167, 180 ], [ 180, 181 ], [ 167, 182 ], [ 182, 183 ], [ 0, 184 ], [ 184, 185 ], [ 184, 186 ] ]
[ "\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.io.PrintWriter;\nimport java.util.StringTokenizer;\n\npublic class Main {\n private static FastReader fr = new FastReader();\n private static PrintWriter out=new PrintWriter(System.out);\n\n public static void main(String[] args) throws IOException {\n StringBuilder sb = new StringBuilder();\n // code goes here\n int x = fr.nextInt();\n sb.append(x == 0 ? 1 : 0);\n System.out.print(sb.toString());\n }\n\n static class FastReader{\n BufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st=new StringTokenizer(\"\");\n\n public String next() {\n while (!st.hasMoreTokens())\n try {\n st=new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n return st.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n public int[] nextIntArray(int n) {\n int[] a=new int[n];\n for (int i=0; i<n; i++) a[i]=nextInt();\n return a;\n }\n\n public long nextLong() {\n return Long.parseLong(next());\n }\n\n public long[] nextLongArray(int n) {\n long[] a=new long[n];\n for (int i=0; i<n; i++) a[i]=nextLong();\n return a;\n }\n }\n\n static class Pair<A, B>{\n A first;\n B second;\n public Pair(A first, B second){\n this.first = first;\n this.second = second;\n }\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "public class Main {\n private static FastReader fr = new FastReader();\n private static PrintWriter out=new PrintWriter(System.out);\n\n public static void main(String[] args) throws IOException {\n StringBuilder sb = new StringBuilder();\n // code goes here\n int x = fr.nextInt();\n sb.append(x == 0 ? 1 : 0);\n System.out.print(sb.toString());\n }\n\n static class FastReader{\n BufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st=new StringTokenizer(\"\");\n\n public String next() {\n while (!st.hasMoreTokens())\n try {\n st=new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n return st.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n public int[] nextIntArray(int n) {\n int[] a=new int[n];\n for (int i=0; i<n; i++) a[i]=nextInt();\n return a;\n }\n\n public long nextLong() {\n return Long.parseLong(next());\n }\n\n public long[] nextLongArray(int n) {\n long[] a=new long[n];\n for (int i=0; i<n; i++) a[i]=nextLong();\n return a;\n }\n }\n\n static class Pair<A, B>{\n A first;\n B second;\n public Pair(A first, B second){\n this.first = first;\n this.second = second;\n }\n }\n}", "Main", "private static FastReader fr = new FastReader();", "fr", "new FastReader()", "private static PrintWriter out=new PrintWriter(System.out);", "out", "new PrintWriter(System.out)", "public static void main(String[] args) throws IOException {\n StringBuilder sb = new StringBuilder();\n // code goes here\n int x = fr.nextInt();\n sb.append(x == 0 ? 1 : 0);\n System.out.print(sb.toString());\n }", "main", "{\n StringBuilder sb = new StringBuilder();\n // code goes here\n int x = fr.nextInt();\n sb.append(x == 0 ? 1 : 0);\n System.out.print(sb.toString());\n }", "StringBuilder sb = new StringBuilder();", "sb", "new StringBuilder()", "int x = fr.nextInt();", "x", "fr.nextInt()", "fr.nextInt", "fr", "sb.append(x == 0 ? 1 : 0)", "sb.append", "sb", "x == 0 ? 1 : 0", "x == 0", "x", "0", "1", "0", "System.out.print(sb.toString())", "System.out.print", "System.out", "System", "System.out", "sb.toString()", "sb.toString", "sb", "String[] args", "args", "static class FastReader{\n BufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st=new StringTokenizer(\"\");\n\n public String next() {\n while (!st.hasMoreTokens())\n try {\n st=new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n return st.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n public int[] nextIntArray(int n) {\n int[] a=new int[n];\n for (int i=0; i<n; i++) a[i]=nextInt();\n return a;\n }\n\n public long nextLong() {\n return Long.parseLong(next());\n }\n\n public long[] nextLongArray(int n) {\n long[] a=new long[n];\n for (int i=0; i<n; i++) a[i]=nextLong();\n return a;\n }\n }", "FastReader", "BufferedReader br=new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "StringTokenizer st=new StringTokenizer(\"\");", "st", "new StringTokenizer(\"\")", "public String next() {\n while (!st.hasMoreTokens())\n try {\n st=new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n return st.nextToken();\n }", "next", "{\n while (!st.hasMoreTokens())\n try {\n st=new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n return st.nextToken();\n }", "while (!st.hasMoreTokens())\n try {\n st=new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }", "!st.hasMoreTokens()", "st.hasMoreTokens()", "st.hasMoreTokens", "st", "try {\n st=new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }", "catch (IOException e) {\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n st=new StringTokenizer(br.readLine());\n }", "st=new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "public int nextInt() {\n return Integer.parseInt(next());\n }", "nextInt", "{\n return Integer.parseInt(next());\n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "public int[] nextIntArray(int n) {\n int[] a=new int[n];\n for (int i=0; i<n; i++) a[i]=nextInt();\n return a;\n }", "nextIntArray", "{\n int[] a=new int[n];\n for (int i=0; i<n; i++) a[i]=nextInt();\n return a;\n }", "int[] a=new int[n];", "a", "new int[n]", "n", "for (int i=0; i<n; i++) a[i]=nextInt();", "int i=0;", "int i=0;", "i", "0", "i<n", "i", "n", "i++", "i++", "i", "a[i]=nextInt();", "a[i]=nextInt()", "a[i]", "a", "i", "nextInt()", "nextInt", "return a;", "a", "int n", "n", "public long nextLong() {\n return Long.parseLong(next());\n }", "nextLong", "{\n return Long.parseLong(next());\n }", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "public long[] nextLongArray(int n) {\n long[] a=new long[n];\n for (int i=0; i<n; i++) a[i]=nextLong();\n return a;\n }", "nextLongArray", "{\n long[] a=new long[n];\n for (int i=0; i<n; i++) a[i]=nextLong();\n return a;\n }", "long[] a=new long[n];", "a", "new long[n]", "n", "for (int i=0; i<n; i++) a[i]=nextLong();", "int i=0;", "int i=0;", "i", "0", "i<n", "i", "n", "i++", "i++", "i", "a[i]=nextLong();", "a[i]=nextLong()", "a[i]", "a", "i", "nextLong()", "nextLong", "return a;", "a", "int n", "n", "static class Pair<A, B>{\n A first;\n B second;\n public Pair(A first, B second){\n this.first = first;\n this.second = second;\n }\n }", "Pair", "A first;", "first", "B second;", "second", "public Pair(A first, B second){\n this.first = first;\n this.second = second;\n }", "Pair", "{\n this.first = first;\n this.second = second;\n }", "this.first = first", "this.first", "this", "this.first", "first", "this.second = second", "this.second", "this", "this.second", "second", "A first", "first", "B second", "second", "public class Main {\n private static FastReader fr = new FastReader();\n private static PrintWriter out=new PrintWriter(System.out);\n\n public static void main(String[] args) throws IOException {\n StringBuilder sb = new StringBuilder();\n // code goes here\n int x = fr.nextInt();\n sb.append(x == 0 ? 1 : 0);\n System.out.print(sb.toString());\n }\n\n static class FastReader{\n BufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st=new StringTokenizer(\"\");\n\n public String next() {\n while (!st.hasMoreTokens())\n try {\n st=new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n return st.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n public int[] nextIntArray(int n) {\n int[] a=new int[n];\n for (int i=0; i<n; i++) a[i]=nextInt();\n return a;\n }\n\n public long nextLong() {\n return Long.parseLong(next());\n }\n\n public long[] nextLongArray(int n) {\n long[] a=new long[n];\n for (int i=0; i<n; i++) a[i]=nextLong();\n return a;\n }\n }\n\n static class Pair<A, B>{\n A first;\n B second;\n public Pair(A first, B second){\n this.first = first;\n this.second = second;\n }\n }\n}", "public class Main {\n private static FastReader fr = new FastReader();\n private static PrintWriter out=new PrintWriter(System.out);\n\n public static void main(String[] args) throws IOException {\n StringBuilder sb = new StringBuilder();\n // code goes here\n int x = fr.nextInt();\n sb.append(x == 0 ? 1 : 0);\n System.out.print(sb.toString());\n }\n\n static class FastReader{\n BufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st=new StringTokenizer(\"\");\n\n public String next() {\n while (!st.hasMoreTokens())\n try {\n st=new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n return st.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n public int[] nextIntArray(int n) {\n int[] a=new int[n];\n for (int i=0; i<n; i++) a[i]=nextInt();\n return a;\n }\n\n public long nextLong() {\n return Long.parseLong(next());\n }\n\n public long[] nextLongArray(int n) {\n long[] a=new long[n];\n for (int i=0; i<n; i++) a[i]=nextLong();\n return a;\n }\n }\n\n static class Pair<A, B>{\n A first;\n B second;\n public Pair(A first, B second){\n this.first = first;\n this.second = second;\n }\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.StringTokenizer; public class Main { private static FastReader fr = new FastReader(); private static PrintWriter out=new PrintWriter(System.out); public static void main(String[] args) throws IOException { StringBuilder sb = new StringBuilder(); // code goes here int x = fr.nextInt(); sb.append(x == 0 ? 1 : 0); System.out.print(sb.toString()); } static class FastReader{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st=new StringTokenizer(""); public String next() { while (!st.hasMoreTokens()) try { st=new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } return st.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } public int[] nextIntArray(int n) { int[] a=new int[n]; for (int i=0; i<n; i++) a[i]=nextInt(); return a; } public long nextLong() { return Long.parseLong(next()); } public long[] nextLongArray(int n) { long[] a=new long[n]; for (int i=0; i<n; i++) a[i]=nextLong(); return a; } } static class Pair<A, B>{ A first; B second; public Pair(A first, B second){ this.first = first; this.second = second; } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 42, 11 ], [ 42, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 14, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 23, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 27, 32 ], [ 23, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 33, 38 ], [ 12, 39 ], [ 39, 40 ], [ 0, 41 ], [ 41, 42 ], [ 41, 43 ] ]
[ "import java.util.*;\nimport java.math.RoundingMode;\nimport java.math.BigDecimal;\n \n \npublic class Main{\n\tpublic static void main (String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n\t\tif(n==1) System.out.println(0);\n\t\telse System.out.println(1);\n\t}\n}", "import java.util.*;", "util.*", "java", "import java.math.RoundingMode;", "RoundingMode", "java.math", "import java.math.BigDecimal;", "BigDecimal", "java.math", "public class Main{\n\tpublic static void main (String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n\t\tif(n==1) System.out.println(0);\n\t\telse System.out.println(1);\n\t}\n}", "Main", "public static void main (String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n\t\tif(n==1) System.out.println(0);\n\t\telse System.out.println(1);\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n\t\tif(n==1) System.out.println(0);\n\t\telse System.out.println(1);\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int n = sc.nextInt();", "n", "sc.nextInt()", "sc.nextInt", "sc", "if(n==1) System.out.println(0);\n\t\telse System.out.println(1);", "n==1", "n", "1", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "String[] args", "args", "public class Main{\n\tpublic static void main (String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n\t\tif(n==1) System.out.println(0);\n\t\telse System.out.println(1);\n\t}\n}", "public class Main{\n\tpublic static void main (String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n\t\tif(n==1) System.out.println(0);\n\t\telse System.out.println(1);\n\t}\n}", "Main" ]
import java.util.*; import java.math.RoundingMode; import java.math.BigDecimal; public class Main{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if(n==1) System.out.println(0); else System.out.println(1); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 18, 13, 13, 41, 13, 18, 13, 13, 41, 13, 20, 41, 13, 20, 41, 13, 20, 4, 18, 13, 17, 13, 13, 4, 18, 13, 23, 13, 6, 13, 12, 13, 30, 41, 13, 4, 18, 13, 4, 18, 13, 2, 13, 17, 23, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 20, 17, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 23, 13, 12, 13, 30, 14, 2, 13, 40, 17, 30, 37, 20, 14, 2, 13, 13, 30, 0, 13, 17, 38, 5, 13, 30, 37, 20, 30, 0, 13, 4, 18, 13, 13, 14, 2, 13, 17, 30, 29, 40, 17, 29, 18, 13, 40, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 30, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 40, 17, 0, 13, 4, 13, 41, 13, 17, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 30, 37, 20, 0, 13, 17, 0, 13, 2, 13, 17, 0, 13, 4, 13, 29, 2, 13, 13, 12, 13, 30, 14, 2, 13, 17, 30, 29, 4, 18, 13, 13, 29, 4, 13, 13, 23, 13, 12, 13, 30, 29, 2, 2, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 23, 13, 6, 13, 12, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 268, 23 ], [ 268, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 26, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 34, 36 ], [ 26, 37 ], [ 37, 38 ], [ 37, 39 ], [ 26, 40 ], [ 40, 41 ], [ 40, 42 ], [ 26, 43 ], [ 43, 44 ], [ 43, 45 ], [ 26, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 46, 50 ], [ 46, 51 ], [ 26, 52 ], [ 52, 53 ], [ 53, 54 ], [ 24, 55 ], [ 55, 56 ], [ 268, 57 ], [ 57, 58 ], [ 57, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 65, 66 ], [ 61, 67 ], [ 67, 68 ], [ 68, 69 ], [ 67, 70 ], [ 70, 71 ], [ 70, 72 ], [ 59, 73 ], [ 73, 74 ], [ 59, 75 ], [ 75, 76 ], [ 59, 77 ], [ 77, 78 ], [ 268, 79 ], [ 79, 80 ], [ 79, 81 ], [ 81, 82 ], [ 79, 83 ], [ 83, 84 ], [ 83, 85 ], [ 79, 87 ], [ 87, 88 ], [ 79, 89 ], [ 89, 90 ], [ 79, 91 ], [ 91, 92 ], [ 79, 93 ], [ 93, 94 ], [ 93, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 96, 100 ], [ 93, 101 ], [ 101, 102 ], [ 79, 103 ], [ 103, 104 ], [ 103, 105 ], [ 105, 106 ], [ 106, 107 ], [ 107, 108 ], [ 107, 109 ], [ 109, 110 ], [ 106, 111 ], [ 111, 112 ], [ 112, 113 ], [ 105, 114 ], [ 114, 115 ], [ 115, 116 ], [ 115, 117 ], [ 114, 118 ], [ 118, 119 ], [ 119, 120 ], [ 119, 121 ], [ 118, 122 ], [ 122, 123 ], [ 123, 124 ], [ 123, 125 ], [ 125, 126 ], [ 126, 127 ], [ 122, 128 ], [ 128, 129 ], [ 129, 130 ], [ 129, 131 ], [ 131, 132 ], [ 132, 133 ], [ 131, 134 ], [ 118, 135 ], [ 135, 136 ], [ 136, 137 ], [ 136, 138 ], [ 135, 139 ], [ 139, 140 ], [ 140, 141 ], [ 141, 142 ], [ 105, 143 ], [ 143, 144 ], [ 144, 145 ], [ 144, 146 ], [ 146, 147 ], [ 79, 148 ], [ 148, 149 ], [ 148, 150 ], [ 150, 151 ], [ 151, 152 ], [ 151, 153 ], [ 153, 154 ], [ 150, 155 ], [ 155, 156 ], [ 156, 157 ], [ 156, 158 ], [ 155, 159 ], [ 159, 160 ], [ 160, 161 ], [ 160, 162 ], [ 162, 163 ], [ 150, 164 ], [ 164, 165 ], [ 164, 166 ], [ 150, 167 ], [ 167, 168 ], [ 168, 169 ], [ 168, 170 ], [ 167, 171 ], [ 171, 172 ], [ 172, 173 ], [ 172, 174 ], [ 174, 175 ], [ 171, 176 ], [ 176, 177 ], [ 176, 178 ], [ 178, 179 ], [ 150, 180 ], [ 180, 181 ], [ 180, 182 ], [ 150, 183 ], [ 183, 184 ], [ 184, 185 ], [ 185, 186 ], [ 185, 187 ], [ 183, 188 ], [ 188, 189 ], [ 189, 190 ], [ 190, 191 ], [ 191, 192 ], [ 191, 193 ], [ 190, 194 ], [ 194, 195 ], [ 194, 196 ], [ 189, 197 ], [ 197, 198 ], [ 198, 199 ], [ 188, 200 ], [ 200, 201 ], [ 200, 202 ], [ 188, 203 ], [ 203, 204 ], [ 203, 205 ], [ 205, 206 ], [ 205, 207 ], [ 188, 208 ], [ 208, 209 ], [ 208, 210 ], [ 210, 211 ], [ 150, 212 ], [ 212, 213 ], [ 213, 214 ], [ 213, 215 ], [ 79, 216 ], [ 216, 217 ], [ 216, 218 ], [ 218, 219 ], [ 219, 220 ], [ 220, 221 ], [ 220, 222 ], [ 219, 223 ], [ 223, 224 ], [ 224, 225 ], [ 225, 226 ], [ 226, 227 ], [ 225, 228 ], [ 218, 229 ], [ 229, 230 ], [ 230, 231 ], [ 230, 232 ], [ 216, 233 ], [ 233, 234 ], [ 79, 235 ], [ 235, 236 ], [ 235, 237 ], [ 237, 238 ], [ 238, 239 ], [ 242, 240 ], [ 252, 241 ], [ 249, 242 ], [ 242, 243 ], [ 243, 244 ], [ 243, 245 ], [ 242, 246 ], [ 246, 247 ], [ 246, 248 ], [ 249, 249 ], [ 249, 250 ], [ 249, 251 ], [ 252, 252 ], [ 252, 253 ], [ 252, 254 ], [ 242, 255 ], [ 255, 256 ], [ 255, 257 ], [ 257, 258 ], [ 235, 259 ], [ 259, 260 ], [ 79, 261 ], [ 261, 262 ], [ 261, 263 ], [ 263, 264 ], [ 263, 265 ], [ 265, 266 ], [ 0, 267 ], [ 267, 268 ], [ 267, 269 ] ]
[ "import java.io.OutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.InputMismatchException;\nimport java.io.IOException;\nimport java.io.InputStream;\n\n/**\n * Built using CHelper plug-in\n * Actual solution is at the top\n */\npublic class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class ANot {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int x = in.nextInt();\n out.println(x ^ 1);\n }\n\n }\n\n static class InputReader {\n private InputStream stream;\n private byte[] buf = new byte[1024];\n private int curChar;\n private int numChars;\n private InputReader.SpaceCharFilter filter;\n\n public InputReader(InputStream stream) {\n this.stream = stream;\n }\n\n public int read() {\n if (numChars == -1) {\n throw new InputMismatchException();\n }\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) {\n return -1;\n }\n }\n return buf[curChar++];\n }\n\n public int nextInt() {\n int c = read();\n while (isSpaceChar(c)) {\n c = read();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public boolean isSpaceChar(int c) {\n if (filter != null) {\n return filter.isSpaceChar(c);\n }\n return isWhitespace(c);\n }\n\n public static boolean isWhitespace(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n\n }\n\n }\n}\n", "import java.io.OutputStream;", "OutputStream", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.InputMismatchException;", "InputMismatchException", "java.util", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class ANot {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int x = in.nextInt();\n out.println(x ^ 1);\n }\n\n }\n\n static class InputReader {\n private InputStream stream;\n private byte[] buf = new byte[1024];\n private int curChar;\n private int numChars;\n private InputReader.SpaceCharFilter filter;\n\n public InputReader(InputStream stream) {\n this.stream = stream;\n }\n\n public int read() {\n if (numChars == -1) {\n throw new InputMismatchException();\n }\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) {\n return -1;\n }\n }\n return buf[curChar++];\n }\n\n public int nextInt() {\n int c = read();\n while (isSpaceChar(c)) {\n c = read();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public boolean isSpaceChar(int c) {\n if (filter != null) {\n return filter.isSpaceChar(c);\n }\n return isWhitespace(c);\n }\n\n public static boolean isWhitespace(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n\n }\n\n }\n}", "Main", "public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }", "main", "{\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }", "InputStream inputStream = System.in;", "inputStream", "System.in", "System", "System.in", "OutputStream outputStream = System.out;", "outputStream", "System.out", "System", "System.out", "InputReader in = new InputReader(inputStream);", "in", "new InputReader(inputStream)", "PrintWriter out = new PrintWriter(outputStream);", "out", "new PrintWriter(outputStream)", "ANot solver = new ANot();", "solver", "new ANot()", "solver.solve(1, in, out)", "solver.solve", "solver", "1", "in", "out", "out.close()", "out.close", "out", "String[] args", "args", "static class ANot {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int x = in.nextInt();\n out.println(x ^ 1);\n }\n\n }", "ANot", "public void solve(int testNumber, InputReader in, PrintWriter out) {\n int x = in.nextInt();\n out.println(x ^ 1);\n }", "solve", "{\n int x = in.nextInt();\n out.println(x ^ 1);\n }", "int x = in.nextInt();", "x", "in.nextInt()", "in.nextInt", "in", "out.println(x ^ 1)", "out.println", "out", "x ^ 1", "x", "1", "int testNumber", "testNumber", "InputReader in", "in", "PrintWriter out", "out", "static class InputReader {\n private InputStream stream;\n private byte[] buf = new byte[1024];\n private int curChar;\n private int numChars;\n private InputReader.SpaceCharFilter filter;\n\n public InputReader(InputStream stream) {\n this.stream = stream;\n }\n\n public int read() {\n if (numChars == -1) {\n throw new InputMismatchException();\n }\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) {\n return -1;\n }\n }\n return buf[curChar++];\n }\n\n public int nextInt() {\n int c = read();\n while (isSpaceChar(c)) {\n c = read();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public boolean isSpaceChar(int c) {\n if (filter != null) {\n return filter.isSpaceChar(c);\n }\n return isWhitespace(c);\n }\n\n public static boolean isWhitespace(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n\n }\n\n }", "InputReader", "private InputStream stream;", "stream", "private byte[] buf = new byte[1024];", "buf", "new byte[1024]", "1024", "private int curChar;", "curChar", "private int numChars;", "numChars", "private InputReader.SpaceCharFilter filter;", "filter", "public InputReader(InputStream stream) {\n this.stream = stream;\n }", "InputReader", "{\n this.stream = stream;\n }", "this.stream = stream", "this.stream", "this", "this.stream", "stream", "InputStream stream", "stream", "public int read() {\n if (numChars == -1) {\n throw new InputMismatchException();\n }\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) {\n return -1;\n }\n }\n return buf[curChar++];\n }", "read", "{\n if (numChars == -1) {\n throw new InputMismatchException();\n }\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) {\n return -1;\n }\n }\n return buf[curChar++];\n }", "if (numChars == -1) {\n throw new InputMismatchException();\n }", "numChars == -1", "numChars", "-1", "1", "{\n throw new InputMismatchException();\n }", "throw new InputMismatchException();", "new InputMismatchException()", "if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) {\n return -1;\n }\n }", "curChar >= numChars", "curChar", "numChars", "{\n curChar = 0;\n try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) {\n return -1;\n }\n }", "curChar = 0", "curChar", "0", "try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }", "catch (IOException e) {\n throw new InputMismatchException();\n }", "IOException e", "{\n throw new InputMismatchException();\n }", "throw new InputMismatchException();", "new InputMismatchException()", "{\n numChars = stream.read(buf);\n }", "numChars = stream.read(buf)", "numChars", "stream.read(buf)", "stream.read", "stream", "buf", "if (numChars <= 0) {\n return -1;\n }", "numChars <= 0", "numChars", "0", "{\n return -1;\n }", "return -1;", "-1", "1", "return buf[curChar++];", "buf[curChar++]", "buf", "curChar++", "curChar", "public int nextInt() {\n int c = read();\n while (isSpaceChar(c)) {\n c = read();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "nextInt", "{\n int c = read();\n while (isSpaceChar(c)) {\n c = read();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "int c = read();", "c", "read()", "read", "while (isSpaceChar(c)) {\n c = read();\n }", "isSpaceChar(c)", "isSpaceChar", "c", "{\n c = read();\n }", "c = read()", "c", "read()", "read", "int sgn = 1;", "sgn", "1", "if (c == '-') {\n sgn = -1;\n c = read();\n }", "c == '-'", "c", "'-'", "{\n sgn = -1;\n c = read();\n }", "sgn = -1", "sgn", "-1", "1", "c = read()", "c", "read()", "read", "int res = 0;", "res", "0", "do {\n if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }\n res *= 10;\n res += c - '0';\n c = read();\n }", "if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }", "c < '0' || c > '9'", "c < '0'", "c", "'0'", "c > '9'", "c", "'9'", "{\n throw new InputMismatchException();\n }", "throw new InputMismatchException();", "new InputMismatchException()", "res *= 10", "res", "10", "res += c - '0'", "res", "c - '0'", "c", "'0'", "c = read()", "c", "read()", "read", "return res * sgn;", "res * sgn", "res", "sgn", "public boolean isSpaceChar(int c) {\n if (filter != null) {\n return filter.isSpaceChar(c);\n }\n return isWhitespace(c);\n }", "isSpaceChar", "{\n if (filter != null) {\n return filter.isSpaceChar(c);\n }\n return isWhitespace(c);\n }", "if (filter != null) {\n return filter.isSpaceChar(c);\n }", "filter != null", "filter", "null", "{\n return filter.isSpaceChar(c);\n }", "return filter.isSpaceChar(c);", "filter.isSpaceChar(c)", "filter.isSpaceChar", "filter", "c", "return isWhitespace(c);", "isWhitespace(c)", "isWhitespace", "c", "int c", "c", "public static boolean isWhitespace(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }", "isWhitespace", "{\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }", "return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;", "c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1", "c == '\\t'", "c == '\\r'", "c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1", "c == ' '", "c", "' '", "c == '\\n'", "c", "'\\n'", "c == '\\r'", "c", "'\\r'", "c == '\\t'", "c", "'\\t'", "c == -1", "c", "-1", "1", "int c", "c", "public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n\n }", "SpaceCharFilter", "public boolean isSpaceChar(int ch);", "isSpaceChar", "int ch", "ch", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class ANot {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int x = in.nextInt();\n out.println(x ^ 1);\n }\n\n }\n\n static class InputReader {\n private InputStream stream;\n private byte[] buf = new byte[1024];\n private int curChar;\n private int numChars;\n private InputReader.SpaceCharFilter filter;\n\n public InputReader(InputStream stream) {\n this.stream = stream;\n }\n\n public int read() {\n if (numChars == -1) {\n throw new InputMismatchException();\n }\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) {\n return -1;\n }\n }\n return buf[curChar++];\n }\n\n public int nextInt() {\n int c = read();\n while (isSpaceChar(c)) {\n c = read();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public boolean isSpaceChar(int c) {\n if (filter != null) {\n return filter.isSpaceChar(c);\n }\n return isWhitespace(c);\n }\n\n public static boolean isWhitespace(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n\n }\n\n }\n}", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class ANot {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int x = in.nextInt();\n out.println(x ^ 1);\n }\n\n }\n\n static class InputReader {\n private InputStream stream;\n private byte[] buf = new byte[1024];\n private int curChar;\n private int numChars;\n private InputReader.SpaceCharFilter filter;\n\n public InputReader(InputStream stream) {\n this.stream = stream;\n }\n\n public int read() {\n if (numChars == -1) {\n throw new InputMismatchException();\n }\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = stream.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) {\n return -1;\n }\n }\n return buf[curChar++];\n }\n\n public int nextInt() {\n int c = read();\n while (isSpaceChar(c)) {\n c = read();\n }\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') {\n throw new InputMismatchException();\n }\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public boolean isSpaceChar(int c) {\n if (filter != null) {\n return filter.isSpaceChar(c);\n }\n return isWhitespace(c);\n }\n\n public static boolean isWhitespace(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n public interface SpaceCharFilter {\n public boolean isSpaceChar(int ch);\n\n }\n\n }\n}", "Main" ]
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.InputMismatchException; import java.io.IOException; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; InputReader in = new InputReader(inputStream); PrintWriter out = new PrintWriter(outputStream); ANot solver = new ANot(); solver.solve(1, in, out); out.close(); } static class ANot { public void solve(int testNumber, InputReader in, PrintWriter out) { int x = in.nextInt(); out.println(x ^ 1); } } static class InputReader { private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int numChars; private InputReader.SpaceCharFilter filter; public InputReader(InputStream stream) { this.stream = stream; } public int read() { if (numChars == -1) { throw new InputMismatchException(); } if (curChar >= numChars) { curChar = 0; try { numChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (numChars <= 0) { return -1; } } return buf[curChar++]; } public int nextInt() { int c = read(); while (isSpaceChar(c)) { c = read(); } int sgn = 1; if (c == '-') { sgn = -1; c = read(); } int res = 0; do { if (c < '0' || c > '9') { throw new InputMismatchException(); } res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public boolean isSpaceChar(int c) { if (filter != null) { return filter.isSpaceChar(c); } return isWhitespace(c); } public static boolean isWhitespace(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 14, 2, 4, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 12, 13, 30, 4, 18, 13, 17, 42, 17, 30, 38, 5, 13, 30, 3, 30, 41, 13, 4, 18, 18, 13, 13, 14, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 30, 3, 30, 4, 18, 13, 13, 12, 13, 30, 4, 13, 29, 4, 18, 13, 4, 18, 13, 12, 13, 30, 4, 13, 29, 4, 18, 13, 4, 18, 13, 13, 23, 13, 12, 13, 30, 4, 13, 29, 4, 18, 13, 4, 18, 13, 12, 13, 30, 4, 13, 29, 4, 18, 13, 4, 18, 13, 13, 23, 13, 12, 13, 30, 4, 13, 29, 20, 12, 13, 30, 4, 13, 29, 20, 23, 13, 12, 13, 30, 4, 13, 29, 4, 18, 13, 4, 18, 13, 12, 13, 30, 4, 13, 29, 20, 12, 13, 30, 4, 13, 29, 4, 18, 13, 4, 18, 13, 12, 13, 30, 42, 17, 30, 38, 5, 13, 30, 3, 30, 41, 13, 4, 18, 18, 13, 13, 14, 2, 2, 13, 17, 2, 13, 40, 17, 30, 3, 12, 13, 30, 42, 17, 30, 38, 5, 13, 30, 3, 30, 41, 13, 4, 18, 18, 13, 13, 14, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 3, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 245, 11 ], [ 245, 12 ], [ 12, 13 ], [ 12, 14 ], [ 245, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 20, 21 ], [ 19, 22 ], [ 18, 23 ], [ 23, 24 ], [ 24, 25 ], [ 25, 26 ], [ 25, 27 ], [ 23, 28 ], [ 18, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 15, 35 ], [ 35, 36 ], [ 245, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 39, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 47, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 52, 60 ], [ 60, 61 ], [ 62, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 62, 66 ], [ 66, 67 ], [ 66, 68 ], [ 62, 69 ], [ 69, 70 ], [ 69, 71 ], [ 71, 72 ], [ 60, 73 ], [ 73, 74 ], [ 60, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 76, 79 ], [ 245, 80 ], [ 80, 81 ], [ 80, 82 ], [ 82, 83 ], [ 83, 84 ], [ 82, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 86, 89 ], [ 89, 90 ], [ 90, 91 ], [ 245, 92 ], [ 92, 93 ], [ 92, 94 ], [ 94, 95 ], [ 95, 96 ], [ 94, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 98, 101 ], [ 101, 102 ], [ 102, 103 ], [ 98, 104 ], [ 92, 105 ], [ 105, 106 ], [ 245, 107 ], [ 107, 108 ], [ 107, 109 ], [ 109, 110 ], [ 110, 111 ], [ 109, 112 ], [ 112, 113 ], [ 113, 114 ], [ 114, 115 ], [ 113, 116 ], [ 116, 117 ], [ 117, 118 ], [ 245, 119 ], [ 119, 120 ], [ 119, 121 ], [ 121, 122 ], [ 122, 123 ], [ 121, 124 ], [ 124, 125 ], [ 125, 126 ], [ 126, 127 ], [ 125, 128 ], [ 128, 129 ], [ 129, 130 ], [ 125, 131 ], [ 119, 132 ], [ 132, 133 ], [ 245, 134 ], [ 134, 135 ], [ 134, 136 ], [ 136, 137 ], [ 137, 138 ], [ 136, 139 ], [ 139, 140 ], [ 245, 141 ], [ 141, 142 ], [ 141, 143 ], [ 143, 144 ], [ 144, 145 ], [ 143, 146 ], [ 146, 147 ], [ 141, 148 ], [ 148, 149 ], [ 245, 150 ], [ 150, 151 ], [ 150, 152 ], [ 152, 153 ], [ 153, 154 ], [ 152, 155 ], [ 155, 156 ], [ 156, 157 ], [ 157, 158 ], [ 156, 159 ], [ 159, 160 ], [ 160, 161 ], [ 245, 162 ], [ 162, 163 ], [ 162, 164 ], [ 164, 165 ], [ 165, 166 ], [ 164, 167 ], [ 167, 168 ], [ 245, 169 ], [ 169, 170 ], [ 169, 171 ], [ 171, 172 ], [ 172, 173 ], [ 171, 174 ], [ 174, 175 ], [ 175, 176 ], [ 176, 177 ], [ 175, 178 ], [ 178, 179 ], [ 179, 180 ], [ 245, 181 ], [ 181, 182 ], [ 181, 183 ], [ 183, 184 ], [ 184, 185 ], [ 184, 186 ], [ 186, 187 ], [ 187, 188 ], [ 188, 189 ], [ 188, 190 ], [ 190, 191 ], [ 187, 192 ], [ 192, 193 ], [ 193, 194 ], [ 193, 195 ], [ 195, 196 ], [ 196, 197 ], [ 197, 198 ], [ 197, 199 ], [ 192, 200 ], [ 200, 201 ], [ 201, 202 ], [ 202, 203 ], [ 202, 204 ], [ 201, 205 ], [ 205, 206 ], [ 205, 207 ], [ 207, 208 ], [ 200, 209 ], [ 209, 210 ], [ 245, 211 ], [ 211, 212 ], [ 211, 213 ], [ 213, 214 ], [ 214, 215 ], [ 214, 216 ], [ 216, 217 ], [ 217, 218 ], [ 218, 219 ], [ 218, 220 ], [ 220, 221 ], [ 217, 222 ], [ 222, 223 ], [ 223, 224 ], [ 223, 225 ], [ 225, 226 ], [ 226, 227 ], [ 227, 228 ], [ 227, 229 ], [ 222, 230 ], [ 230, 231 ], [ 232, 232 ], [ 232, 233 ], [ 233, 234 ], [ 233, 235 ], [ 232, 236 ], [ 236, 237 ], [ 236, 238 ], [ 232, 239 ], [ 239, 240 ], [ 239, 241 ], [ 241, 242 ], [ 230, 243 ], [ 0, 244 ], [ 244, 245 ], [ 244, 246 ] ]
[ "import java.io.IOException;\nimport java.math.BigDecimal;\nimport java.math.BigInteger;\n\npublic class Main {\n private static final StringBuilder builder = new StringBuilder();\n public static void main(String[] args) {\n if (readInt() == 0) System.out.print(1);\n else System.out.print(0);\n }\n\n private static void read() {\n builder.setLength(0);\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n } catch (IOException e) {\n break;\n }\n }\n }\n\n private static int readInt() {\n read();\n return Integer.parseInt(builder.toString());\n }\n\n private static int readInt(int radix) {\n read();\n return Integer.parseInt(builder.toString(), radix);\n }\n\n private static long readLong() {\n read();\n return Long.parseLong(builder.toString());\n }\n\n private static long readLong(int radix) {\n read();\n return Long.parseLong(builder.toString(), radix);\n }\n\n private static BigInteger readBigInteger() {\n read();\n return new BigInteger(builder.toString());\n }\n\n private static BigInteger readBigInteger(int radix) {\n read();\n return new BigInteger(builder.toString(), radix);\n }\n\n private static double readDouble() {\n read();\n return Double.parseDouble(builder.toString());\n }\n\n private static BigDecimal readBigDecimal() {\n read();\n return new BigDecimal(builder.toString());\n }\n\n private static float readFloat() {\n read();\n return Float.parseFloat(builder.toString());\n }\n\n private static void skipLine() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n } catch (IOException e) {\n break;\n }\n }\n }\n\n private static void skip() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n } catch (IOException e) {\n break;\n }\n }\n }\n\n}", "import java.io.IOException;", "IOException", "java.io", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.math.BigInteger;", "BigInteger", "java.math", "public class Main {\n private static final StringBuilder builder = new StringBuilder();\n public static void main(String[] args) {\n if (readInt() == 0) System.out.print(1);\n else System.out.print(0);\n }\n\n private static void read() {\n builder.setLength(0);\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n } catch (IOException e) {\n break;\n }\n }\n }\n\n private static int readInt() {\n read();\n return Integer.parseInt(builder.toString());\n }\n\n private static int readInt(int radix) {\n read();\n return Integer.parseInt(builder.toString(), radix);\n }\n\n private static long readLong() {\n read();\n return Long.parseLong(builder.toString());\n }\n\n private static long readLong(int radix) {\n read();\n return Long.parseLong(builder.toString(), radix);\n }\n\n private static BigInteger readBigInteger() {\n read();\n return new BigInteger(builder.toString());\n }\n\n private static BigInteger readBigInteger(int radix) {\n read();\n return new BigInteger(builder.toString(), radix);\n }\n\n private static double readDouble() {\n read();\n return Double.parseDouble(builder.toString());\n }\n\n private static BigDecimal readBigDecimal() {\n read();\n return new BigDecimal(builder.toString());\n }\n\n private static float readFloat() {\n read();\n return Float.parseFloat(builder.toString());\n }\n\n private static void skipLine() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n } catch (IOException e) {\n break;\n }\n }\n }\n\n private static void skip() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n } catch (IOException e) {\n break;\n }\n }\n }\n\n}", "Main", "private static final StringBuilder builder = new StringBuilder();", "builder", "new StringBuilder()", "public static void main(String[] args) {\n if (readInt() == 0) System.out.print(1);\n else System.out.print(0);\n }", "main", "{\n if (readInt() == 0) System.out.print(1);\n else System.out.print(0);\n }", "if (readInt() == 0) System.out.print(1);\n else System.out.print(0);", "readInt() == 0", "readInt()", "readInt", "0", "System.out.print(1)", "System.out.print", "System.out", "System", "System.out", "1", "System.out.print(0)", "System.out.print", "System.out", "System", "System.out", "0", "String[] args", "args", "private static void read() {\n builder.setLength(0);\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n } catch (IOException e) {\n break;\n }\n }\n }", "read", "{\n builder.setLength(0);\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n } catch (IOException e) {\n break;\n }\n }\n }", "builder.setLength(0)", "builder.setLength", "builder", "0", "while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n } catch (IOException e) {\n break;\n }\n }", "true", "{\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n } catch (IOException e) {\n break;\n }\n }", "try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n } catch (IOException e) {\n break;\n }", "catch (IOException e) {\n break;\n }", "IOException e", "{\n break;\n }", "break;", "{\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n }", "int b = System.in.read();", "b", "System.in.read()", "System.in.read", "System.in", "System", "System.in", "if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }", "b == ' ' || b == '\\n' || b == -1", "b == ' ' || b == '\\n' || b == -1", "b == ' '", "b", "' '", "b == '\\n'", "b", "'\\n'", "b == -1", "b", "-1", "1", "{\n break;\n }", "break;", "{\n builder.appendCodePoint(b);\n }", "builder.appendCodePoint(b)", "builder.appendCodePoint", "builder", "b", "private static int readInt() {\n read();\n return Integer.parseInt(builder.toString());\n }", "readInt", "{\n read();\n return Integer.parseInt(builder.toString());\n }", "read()", "read", "return Integer.parseInt(builder.toString());", "Integer.parseInt(builder.toString())", "Integer.parseInt", "Integer", "builder.toString()", "builder.toString", "builder", "private static int readInt(int radix) {\n read();\n return Integer.parseInt(builder.toString(), radix);\n }", "readInt", "{\n read();\n return Integer.parseInt(builder.toString(), radix);\n }", "read()", "read", "return Integer.parseInt(builder.toString(), radix);", "Integer.parseInt(builder.toString(), radix)", "Integer.parseInt", "Integer", "builder.toString()", "builder.toString", "builder", "radix", "int radix", "radix", "private static long readLong() {\n read();\n return Long.parseLong(builder.toString());\n }", "readLong", "{\n read();\n return Long.parseLong(builder.toString());\n }", "read()", "read", "return Long.parseLong(builder.toString());", "Long.parseLong(builder.toString())", "Long.parseLong", "Long", "builder.toString()", "builder.toString", "builder", "private static long readLong(int radix) {\n read();\n return Long.parseLong(builder.toString(), radix);\n }", "readLong", "{\n read();\n return Long.parseLong(builder.toString(), radix);\n }", "read()", "read", "return Long.parseLong(builder.toString(), radix);", "Long.parseLong(builder.toString(), radix)", "Long.parseLong", "Long", "builder.toString()", "builder.toString", "builder", "radix", "int radix", "radix", "private static BigInteger readBigInteger() {\n read();\n return new BigInteger(builder.toString());\n }", "readBigInteger", "{\n read();\n return new BigInteger(builder.toString());\n }", "read()", "read", "return new BigInteger(builder.toString());", "new BigInteger(builder.toString())", "private static BigInteger readBigInteger(int radix) {\n read();\n return new BigInteger(builder.toString(), radix);\n }", "readBigInteger", "{\n read();\n return new BigInteger(builder.toString(), radix);\n }", "read()", "read", "return new BigInteger(builder.toString(), radix);", "new BigInteger(builder.toString(), radix)", "int radix", "radix", "private static double readDouble() {\n read();\n return Double.parseDouble(builder.toString());\n }", "readDouble", "{\n read();\n return Double.parseDouble(builder.toString());\n }", "read()", "read", "return Double.parseDouble(builder.toString());", "Double.parseDouble(builder.toString())", "Double.parseDouble", "Double", "builder.toString()", "builder.toString", "builder", "private static BigDecimal readBigDecimal() {\n read();\n return new BigDecimal(builder.toString());\n }", "readBigDecimal", "{\n read();\n return new BigDecimal(builder.toString());\n }", "read()", "read", "return new BigDecimal(builder.toString());", "new BigDecimal(builder.toString())", "private static float readFloat() {\n read();\n return Float.parseFloat(builder.toString());\n }", "readFloat", "{\n read();\n return Float.parseFloat(builder.toString());\n }", "read()", "read", "return Float.parseFloat(builder.toString());", "Float.parseFloat(builder.toString())", "Float.parseFloat", "Float", "builder.toString()", "builder.toString", "builder", "private static void skipLine() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n } catch (IOException e) {\n break;\n }\n }\n }", "skipLine", "{\n while (true) {\n try {\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n } catch (IOException e) {\n break;\n }\n }\n }", "while (true) {\n try {\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n } catch (IOException e) {\n break;\n }\n }", "true", "{\n try {\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n } catch (IOException e) {\n break;\n }\n }", "try {\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n } catch (IOException e) {\n break;\n }", "catch (IOException e) {\n break;\n }", "IOException e", "{\n break;\n }", "break;", "{\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n }", "int b = System.in.read();", "b", "System.in.read()", "System.in.read", "System.in", "System", "System.in", "if (b == '\\n' || b == -1) {\n break;\n }", "b == '\\n' || b == -1", "b == '\\n'", "b", "'\\n'", "b == -1", "b", "-1", "1", "{\n break;\n }", "break;", "private static void skip() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n } catch (IOException e) {\n break;\n }\n }\n }", "skip", "{\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n } catch (IOException e) {\n break;\n }\n }\n }", "while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n } catch (IOException e) {\n break;\n }\n }", "true", "{\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n } catch (IOException e) {\n break;\n }\n }", "try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n } catch (IOException e) {\n break;\n }", "catch (IOException e) {\n break;\n }", "IOException e", "{\n break;\n }", "break;", "{\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n }", "int b = System.in.read();", "b", "System.in.read()", "System.in.read", "System.in", "System", "System.in", "if (b == ' ' || b == '\\n' || b == -1) break;", "b == ' ' || b == '\\n' || b == -1", "b == ' ' || b == '\\n' || b == -1", "b == ' '", "b", "' '", "b == '\\n'", "b", "'\\n'", "b == -1", "b", "-1", "1", "break;", "public class Main {\n private static final StringBuilder builder = new StringBuilder();\n public static void main(String[] args) {\n if (readInt() == 0) System.out.print(1);\n else System.out.print(0);\n }\n\n private static void read() {\n builder.setLength(0);\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n } catch (IOException e) {\n break;\n }\n }\n }\n\n private static int readInt() {\n read();\n return Integer.parseInt(builder.toString());\n }\n\n private static int readInt(int radix) {\n read();\n return Integer.parseInt(builder.toString(), radix);\n }\n\n private static long readLong() {\n read();\n return Long.parseLong(builder.toString());\n }\n\n private static long readLong(int radix) {\n read();\n return Long.parseLong(builder.toString(), radix);\n }\n\n private static BigInteger readBigInteger() {\n read();\n return new BigInteger(builder.toString());\n }\n\n private static BigInteger readBigInteger(int radix) {\n read();\n return new BigInteger(builder.toString(), radix);\n }\n\n private static double readDouble() {\n read();\n return Double.parseDouble(builder.toString());\n }\n\n private static BigDecimal readBigDecimal() {\n read();\n return new BigDecimal(builder.toString());\n }\n\n private static float readFloat() {\n read();\n return Float.parseFloat(builder.toString());\n }\n\n private static void skipLine() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n } catch (IOException e) {\n break;\n }\n }\n }\n\n private static void skip() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n } catch (IOException e) {\n break;\n }\n }\n }\n\n}", "public class Main {\n private static final StringBuilder builder = new StringBuilder();\n public static void main(String[] args) {\n if (readInt() == 0) System.out.print(1);\n else System.out.print(0);\n }\n\n private static void read() {\n builder.setLength(0);\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) {\n break;\n } else {\n builder.appendCodePoint(b);\n }\n } catch (IOException e) {\n break;\n }\n }\n }\n\n private static int readInt() {\n read();\n return Integer.parseInt(builder.toString());\n }\n\n private static int readInt(int radix) {\n read();\n return Integer.parseInt(builder.toString(), radix);\n }\n\n private static long readLong() {\n read();\n return Long.parseLong(builder.toString());\n }\n\n private static long readLong(int radix) {\n read();\n return Long.parseLong(builder.toString(), radix);\n }\n\n private static BigInteger readBigInteger() {\n read();\n return new BigInteger(builder.toString());\n }\n\n private static BigInteger readBigInteger(int radix) {\n read();\n return new BigInteger(builder.toString(), radix);\n }\n\n private static double readDouble() {\n read();\n return Double.parseDouble(builder.toString());\n }\n\n private static BigDecimal readBigDecimal() {\n read();\n return new BigDecimal(builder.toString());\n }\n\n private static float readFloat() {\n read();\n return Float.parseFloat(builder.toString());\n }\n\n private static void skipLine() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == '\\n' || b == -1) {\n break;\n }\n } catch (IOException e) {\n break;\n }\n }\n }\n\n private static void skip() {\n while (true) {\n try {\n int b = System.in.read();\n if (b == ' ' || b == '\\n' || b == -1) break;\n } catch (IOException e) {\n break;\n }\n }\n }\n\n}", "Main" ]
import java.io.IOException; import java.math.BigDecimal; import java.math.BigInteger; public class Main { private static final StringBuilder builder = new StringBuilder(); public static void main(String[] args) { if (readInt() == 0) System.out.print(1); else System.out.print(0); } private static void read() { builder.setLength(0); while (true) { try { int b = System.in.read(); if (b == ' ' || b == '\n' || b == -1) { break; } else { builder.appendCodePoint(b); } } catch (IOException e) { break; } } } private static int readInt() { read(); return Integer.parseInt(builder.toString()); } private static int readInt(int radix) { read(); return Integer.parseInt(builder.toString(), radix); } private static long readLong() { read(); return Long.parseLong(builder.toString()); } private static long readLong(int radix) { read(); return Long.parseLong(builder.toString(), radix); } private static BigInteger readBigInteger() { read(); return new BigInteger(builder.toString()); } private static BigInteger readBigInteger(int radix) { read(); return new BigInteger(builder.toString(), radix); } private static double readDouble() { read(); return Double.parseDouble(builder.toString()); } private static BigDecimal readBigDecimal() { read(); return new BigDecimal(builder.toString()); } private static float readFloat() { read(); return Float.parseFloat(builder.toString()); } private static void skipLine() { while (true) { try { int b = System.in.read(); if (b == '\n' || b == -1) { break; } } catch (IOException e) { break; } } } private static void skip() { while (true) { try { int b = System.in.read(); if (b == ' ' || b == '\n' || b == -1) break; } catch (IOException e) { break; } } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 55, 17 ], [ 55, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 26, 29 ], [ 29, 30 ], [ 30, 31 ], [ 20, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 32, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 36, 41 ], [ 32, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 42, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 46, 51 ], [ 18, 52 ], [ 52, 53 ], [ 0, 54 ], [ 54, 55 ], [ 54, 56 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.Arrays;\nimport java.util.Comparator;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint x = Integer.parseInt(br.readLine());\n\n\t\tif (x == 0)\n\t\t\tSystem.out.println(1);\n\t\telse if (x == 1)\n\t\t\tSystem.out.println(0);\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.util.Arrays;", "Arrays", "java.util", "import java.util.Comparator;", "Comparator", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint x = Integer.parseInt(br.readLine());\n\n\t\tif (x == 0)\n\t\t\tSystem.out.println(1);\n\t\telse if (x == 1)\n\t\t\tSystem.out.println(0);\n\t}\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint x = Integer.parseInt(br.readLine());\n\n\t\tif (x == 0)\n\t\t\tSystem.out.println(1);\n\t\telse if (x == 1)\n\t\t\tSystem.out.println(0);\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint x = Integer.parseInt(br.readLine());\n\n\t\tif (x == 0)\n\t\t\tSystem.out.println(1);\n\t\telse if (x == 1)\n\t\t\tSystem.out.println(0);\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "int x = Integer.parseInt(br.readLine());", "x", "Integer.parseInt(br.readLine())", "Integer.parseInt", "Integer", "br.readLine()", "br.readLine", "br", "if (x == 0)\n\t\t\tSystem.out.println(1);\n\t\telse if (x == 1)\n\t\t\tSystem.out.println(0);", "x == 0", "x", "0", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "if (x == 1)\n\t\t\tSystem.out.println(0);", "x == 1", "x", "1", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint x = Integer.parseInt(br.readLine());\n\n\t\tif (x == 0)\n\t\t\tSystem.out.println(1);\n\t\telse if (x == 1)\n\t\t\tSystem.out.println(0);\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint x = Integer.parseInt(br.readLine());\n\n\t\tif (x == 0)\n\t\t\tSystem.out.println(1);\n\t\telse if (x == 1)\n\t\t\tSystem.out.println(0);\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Comparator; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int x = Integer.parseInt(br.readLine()); if (x == 0) System.out.println(1); else if (x == 1) System.out.println(0); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 2, 13, 17, 4, 18, 13, 23, 13, 12, 13, 30, 41, 13, 17, 42, 2, 13, 17, 30, 14, 2, 2, 13, 17, 17, 30, 0, 13, 2, 13, 13, 0, 13, 17, 30, 0, 13, 2, 13, 13, 40, 13, 29, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 17, 42, 2, 13, 17, 30, 14, 2, 2, 13, 17, 17, 30, 0, 13, 2, 2, 13, 13, 13, 0, 13, 17, 30, 0, 13, 2, 2, 13, 13, 13, 40, 13, 29, 13, 23, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 20, 17, 41, 13, 41, 13, 12, 13, 30, 4, 13, 18, 13, 13, 12, 13, 30, 0, 13, 13, 23, 13, 12, 13, 30, 14, 2, 13, 40, 17, 37, 20, 14, 2, 13, 13, 30, 0, 13, 17, 38, 5, 13, 30, 37, 20, 30, 0, 13, 4, 18, 13, 13, 14, 2, 13, 17, 29, 40, 17, 29, 18, 13, 40, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 20, 42, 40, 4, 13, 13, 30, 4, 18, 13, 13, 0, 13, 4, 13, 29, 4, 18, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 20, 42, 40, 4, 13, 13, 30, 4, 18, 13, 13, 0, 13, 4, 13, 29, 4, 18, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 40, 17, 0, 13, 4, 13, 41, 13, 17, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 37, 20, 0, 13, 17, 0, 13, 2, 13, 17, 0, 13, 4, 13, 29, 2, 13, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 40, 17, 0, 13, 4, 13, 41, 13, 17, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 37, 20, 0, 13, 17, 0, 13, 2, 13, 17, 0, 13, 4, 13, 29, 2, 13, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 2, 2, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 23, 13, 12, 13, 30, 29, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 14, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 14, 26 ], [ 26, 27 ], [ 27, 28 ], [ 26, 29 ], [ 29, 30 ], [ 29, 31 ], [ 14, 32 ], [ 32, 33 ], [ 33, 34 ], [ 12, 35 ], [ 35, 36 ], [ 10, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 39, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 43, 47 ], [ 47, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 48, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 57, 59 ], [ 54, 60 ], [ 60, 61 ], [ 60, 62 ], [ 48, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 66, 68 ], [ 63, 69 ], [ 69, 70 ], [ 39, 71 ], [ 71, 72 ], [ 37, 73 ], [ 73, 74 ], [ 37, 75 ], [ 75, 76 ], [ 10, 77 ], [ 77, 78 ], [ 77, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 79, 83 ], [ 83, 84 ], [ 84, 85 ], [ 84, 86 ], [ 83, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 89, 93 ], [ 88, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 97, 101 ], [ 94, 102 ], [ 102, 103 ], [ 102, 104 ], [ 88, 105 ], [ 105, 106 ], [ 106, 107 ], [ 106, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 108, 112 ], [ 105, 113 ], [ 113, 114 ], [ 79, 115 ], [ 115, 116 ], [ 77, 117 ], [ 117, 118 ], [ 77, 119 ], [ 119, 120 ], [ 77, 121 ], [ 121, 122 ], [ 10, 123 ], [ 123, 124 ], [ 123, 125 ], [ 125, 126 ], [ 123, 127 ], [ 127, 128 ], [ 127, 129 ], [ 123, 131 ], [ 131, 132 ], [ 123, 133 ], [ 133, 134 ], [ 123, 135 ], [ 135, 136 ], [ 135, 137 ], [ 137, 138 ], [ 138, 139 ], [ 138, 140 ], [ 140, 141 ], [ 140, 142 ], [ 123, 143 ], [ 143, 144 ], [ 143, 145 ], [ 145, 146 ], [ 146, 147 ], [ 146, 148 ], [ 143, 149 ], [ 149, 150 ], [ 123, 151 ], [ 151, 152 ], [ 151, 153 ], [ 153, 154 ], [ 154, 155 ], [ 155, 156 ], [ 155, 157 ], [ 157, 158 ], [ 154, 159 ], [ 159, 160 ], [ 153, 161 ], [ 161, 162 ], [ 162, 163 ], [ 162, 164 ], [ 161, 165 ], [ 165, 166 ], [ 166, 167 ], [ 166, 168 ], [ 165, 169 ], [ 169, 170 ], [ 170, 171 ], [ 170, 172 ], [ 172, 173 ], [ 173, 174 ], [ 169, 175 ], [ 175, 176 ], [ 176, 177 ], [ 176, 178 ], [ 178, 179 ], [ 179, 180 ], [ 178, 181 ], [ 165, 182 ], [ 182, 183 ], [ 183, 184 ], [ 183, 185 ], [ 182, 186 ], [ 186, 187 ], [ 187, 188 ], [ 153, 189 ], [ 189, 190 ], [ 190, 191 ], [ 190, 192 ], [ 192, 193 ], [ 123, 194 ], [ 194, 195 ], [ 194, 196 ], [ 196, 197 ], [ 197, 198 ], [ 197, 199 ], [ 199, 200 ], [ 196, 201 ], [ 201, 202 ], [ 202, 203 ], [ 202, 204 ], [ 201, 205 ], [ 205, 206 ], [ 205, 207 ], [ 207, 208 ], [ 196, 209 ], [ 209, 210 ], [ 209, 211 ], [ 196, 212 ], [ 212, 213 ], [ 213, 214 ], [ 214, 215 ], [ 214, 216 ], [ 212, 217 ], [ 217, 218 ], [ 218, 219 ], [ 219, 220 ], [ 218, 221 ], [ 217, 222 ], [ 222, 223 ], [ 222, 224 ], [ 224, 225 ], [ 196, 226 ], [ 226, 227 ], [ 227, 228 ], [ 228, 229 ], [ 123, 230 ], [ 230, 231 ], [ 230, 232 ], [ 232, 233 ], [ 233, 234 ], [ 233, 235 ], [ 235, 236 ], [ 232, 237 ], [ 237, 238 ], [ 238, 239 ], [ 238, 240 ], [ 237, 241 ], [ 241, 242 ], [ 241, 243 ], [ 243, 244 ], [ 232, 245 ], [ 245, 246 ], [ 245, 247 ], [ 232, 248 ], [ 248, 249 ], [ 249, 250 ], [ 250, 251 ], [ 250, 252 ], [ 248, 253 ], [ 253, 254 ], [ 254, 255 ], [ 255, 256 ], [ 254, 257 ], [ 253, 258 ], [ 258, 259 ], [ 258, 260 ], [ 260, 261 ], [ 232, 262 ], [ 262, 263 ], [ 263, 264 ], [ 264, 265 ], [ 123, 266 ], [ 266, 267 ], [ 266, 268 ], [ 268, 269 ], [ 269, 270 ], [ 269, 271 ], [ 271, 272 ], [ 268, 273 ], [ 273, 274 ], [ 274, 275 ], [ 274, 276 ], [ 273, 277 ], [ 277, 278 ], [ 277, 279 ], [ 279, 280 ], [ 268, 281 ], [ 281, 282 ], [ 281, 283 ], [ 268, 284 ], [ 284, 285 ], [ 285, 286 ], [ 285, 287 ], [ 284, 288 ], [ 288, 289 ], [ 289, 290 ], [ 289, 291 ], [ 291, 292 ], [ 288, 293 ], [ 293, 294 ], [ 293, 295 ], [ 295, 296 ], [ 268, 297 ], [ 297, 298 ], [ 297, 299 ], [ 268, 300 ], [ 300, 301 ], [ 301, 302 ], [ 302, 303 ], [ 302, 304 ], [ 300, 305 ], [ 305, 306 ], [ 306, 307 ], [ 307, 308 ], [ 308, 309 ], [ 308, 310 ], [ 307, 311 ], [ 311, 312 ], [ 311, 313 ], [ 306, 314 ], [ 314, 315 ], [ 305, 316 ], [ 316, 317 ], [ 316, 318 ], [ 305, 319 ], [ 319, 320 ], [ 319, 321 ], [ 321, 322 ], [ 321, 323 ], [ 305, 324 ], [ 324, 325 ], [ 324, 326 ], [ 326, 327 ], [ 268, 328 ], [ 328, 329 ], [ 329, 330 ], [ 329, 331 ], [ 123, 332 ], [ 332, 333 ], [ 332, 334 ], [ 334, 335 ], [ 335, 336 ], [ 335, 337 ], [ 337, 338 ], [ 334, 339 ], [ 339, 340 ], [ 340, 341 ], [ 340, 342 ], [ 339, 343 ], [ 343, 344 ], [ 343, 345 ], [ 345, 346 ], [ 334, 347 ], [ 347, 348 ], [ 347, 349 ], [ 334, 350 ], [ 350, 351 ], [ 351, 352 ], [ 351, 353 ], [ 350, 354 ], [ 354, 355 ], [ 355, 356 ], [ 355, 357 ], [ 357, 358 ], [ 354, 359 ], [ 359, 360 ], [ 359, 361 ], [ 361, 362 ], [ 334, 363 ], [ 363, 364 ], [ 363, 365 ], [ 334, 366 ], [ 366, 367 ], [ 367, 368 ], [ 368, 369 ], [ 368, 370 ], [ 366, 371 ], [ 371, 372 ], [ 372, 373 ], [ 373, 374 ], [ 374, 375 ], [ 374, 376 ], [ 373, 377 ], [ 377, 378 ], [ 377, 379 ], [ 372, 380 ], [ 380, 381 ], [ 371, 382 ], [ 382, 383 ], [ 382, 384 ], [ 371, 385 ], [ 385, 386 ], [ 385, 387 ], [ 387, 388 ], [ 387, 389 ], [ 371, 390 ], [ 390, 391 ], [ 390, 392 ], [ 392, 393 ], [ 334, 394 ], [ 394, 395 ], [ 395, 396 ], [ 395, 397 ], [ 123, 398 ], [ 398, 399 ], [ 398, 400 ], [ 400, 401 ], [ 401, 402 ], [ 402, 403 ], [ 403, 404 ], [ 402, 405 ], [ 405, 406 ], [ 123, 407 ], [ 407, 408 ], [ 407, 409 ], [ 409, 410 ], [ 410, 411 ], [ 414, 412 ], [ 424, 413 ], [ 421, 414 ], [ 414, 415 ], [ 415, 416 ], [ 415, 417 ], [ 414, 418 ], [ 418, 419 ], [ 418, 420 ], [ 421, 421 ], [ 421, 422 ], [ 421, 423 ], [ 424, 424 ], [ 424, 425 ], [ 424, 426 ], [ 414, 427 ], [ 427, 428 ], [ 427, 429 ], [ 429, 430 ], [ 407, 431 ], [ 431, 432 ], [ 123, 433 ], [ 433, 434 ], [ 433, 435 ], [ 435, 436 ], [ 436, 437 ], [ 438, 438 ], [ 438, 439 ], [ 439, 440 ], [ 439, 441 ], [ 438, 442 ], [ 442, 443 ], [ 442, 444 ], [ 438, 445 ], [ 445, 446 ], [ 445, 447 ], [ 447, 448 ], [ 433, 449 ], [ 449, 450 ], [ 123, 451 ], [ 451, 452 ], [ 451, 453 ], [ 453, 454 ], [ 454, 455 ], [ 454, 456 ], [ 453, 458 ], [ 458, 459 ], [ 459, 460 ], [ 460, 461 ], [ 460, 462 ], [ 458, 463 ], [ 463, 464 ], [ 463, 465 ], [ 458, 466 ], [ 466, 467 ], [ 467, 468 ], [ 458, 469 ], [ 470, 470 ], [ 470, 471 ], [ 471, 472 ], [ 472, 473 ], [ 472, 474 ], [ 471, 475 ], [ 475, 476 ], [ 453, 477 ], [ 477, 478 ], [ 451, 479 ], [ 479, 480 ], [ 123, 481 ], [ 481, 482 ], [ 481, 483 ], [ 483, 484 ], [ 484, 485 ], [ 484, 486 ], [ 483, 488 ], [ 488, 489 ], [ 489, 490 ], [ 490, 491 ], [ 490, 492 ], [ 488, 493 ], [ 493, 494 ], [ 493, 495 ], [ 488, 496 ], [ 496, 497 ], [ 497, 498 ], [ 488, 499 ], [ 500, 500 ], [ 500, 501 ], [ 501, 502 ], [ 502, 503 ], [ 502, 504 ], [ 501, 505 ], [ 505, 506 ], [ 483, 507 ], [ 507, 508 ], [ 481, 509 ], [ 509, 510 ] ]
[ "\nimport java.util.*;\nimport java.io.*;\nimport java.math.*;\n\n class Main {\n public static void main(String[] args) throws IOException {\n PrintWriter out = new PrintWriter(System.out);\n Reader s = new Reader();\n int t = s.i();\n out.println(t^1);\n out.flush();\n }\n\n private static int power(int a, int n) {\n int result = 1;\n while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a);\n n /= 2;\n } else {\n result = (result * a);\n n--;\n }\n }\n return result;\n }\n\n private static int power(int a, int n, int p) {\n int result = 1;\n while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a) % p;\n n /= 2;\n } else {\n result = (result * a) % p;\n n--;\n }\n }\n return result;\n }\n\n static class Reader {\n private InputStream mIs;\n private byte[] buf = new byte[1024];\n private int curChar, numChars;\n\n public Reader() {\n this(System.in);\n }\n\n public Reader(InputStream is) {\n mIs = is;\n }\n\n public int read() {\n if (numChars == -1) throw new InputMismatchException();\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = mIs.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) return -1;\n }\n return buf[curChar++];\n }\n\n public String nextLine() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isEndOfLine(c));\n return res.toString();\n }\n\n public String s() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isSpaceChar(c));\n return res.toString();\n }\n\n public long l() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public int i() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public double d() throws IOException {\n return Double.parseDouble(s());\n }\n\n public boolean isSpaceChar(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n public boolean isEndOfLine(int c) {\n return c == '\\n' || c == '\\r' || c == -1;\n }\n\n public int[] arr(int n) {\n int[] ret = new int[n];\n for (int i = 0; i < n; i++) {\n ret[i] = i();\n }\n return ret;\n }\n\n public long[] arrLong(int n) {\n long[] ret = new long[n];\n for (int i = 0; i < n; i++) {\n ret[i] = l();\n }\n return ret;\n }\n }\n// static class pairLong implements Comparator<pairLong> {\n// long first, second;\n//\n// pairLong() {\n// }\n//\n// pairLong(long first, long second) {\n// this.first = first;\n// this.second = second;\n// }\n//\n// @Override\n// public int compare(pairLong p1, pairLong p2) {\n// if (p1.first == p2.first) {\n// if(p1.second > p2.second) return 1;\n// else return -1;\n// }\n// if(p1.first > p2.first) return 1;\n// else return -1;\n// }\n// }\n// static class pair implements Comparator<pair> {\n// int first, second;\n//\n// pair() {\n// }\n//\n// pair(int first, int second) {\n// this.first = first;\n// this.second = second;\n// }\n//\n// @Override\n// public int compare(pair p1, pair p2) {\n// if (p1.first == p2.first) return p1.second - p2.second;\n// return p1.first - p2.first;\n// }\n// }\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "import java.math.*;", "math.*", "java", "class Main {\n public static void main(String[] args) throws IOException {\n PrintWriter out = new PrintWriter(System.out);\n Reader s = new Reader();\n int t = s.i();\n out.println(t^1);\n out.flush();\n }\n\n private static int power(int a, int n) {\n int result = 1;\n while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a);\n n /= 2;\n } else {\n result = (result * a);\n n--;\n }\n }\n return result;\n }\n\n private static int power(int a, int n, int p) {\n int result = 1;\n while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a) % p;\n n /= 2;\n } else {\n result = (result * a) % p;\n n--;\n }\n }\n return result;\n }\n\n static class Reader {\n private InputStream mIs;\n private byte[] buf = new byte[1024];\n private int curChar, numChars;\n\n public Reader() {\n this(System.in);\n }\n\n public Reader(InputStream is) {\n mIs = is;\n }\n\n public int read() {\n if (numChars == -1) throw new InputMismatchException();\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = mIs.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) return -1;\n }\n return buf[curChar++];\n }\n\n public String nextLine() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isEndOfLine(c));\n return res.toString();\n }\n\n public String s() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isSpaceChar(c));\n return res.toString();\n }\n\n public long l() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public int i() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public double d() throws IOException {\n return Double.parseDouble(s());\n }\n\n public boolean isSpaceChar(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n public boolean isEndOfLine(int c) {\n return c == '\\n' || c == '\\r' || c == -1;\n }\n\n public int[] arr(int n) {\n int[] ret = new int[n];\n for (int i = 0; i < n; i++) {\n ret[i] = i();\n }\n return ret;\n }\n\n public long[] arrLong(int n) {\n long[] ret = new long[n];\n for (int i = 0; i < n; i++) {\n ret[i] = l();\n }\n return ret;\n }\n }\n// static class pairLong implements Comparator<pairLong> {\n// long first, second;\n//\n// pairLong() {\n// }\n//\n// pairLong(long first, long second) {\n// this.first = first;\n// this.second = second;\n// }\n//\n// @Override\n// public int compare(pairLong p1, pairLong p2) {\n// if (p1.first == p2.first) {\n// if(p1.second > p2.second) return 1;\n// else return -1;\n// }\n// if(p1.first > p2.first) return 1;\n// else return -1;\n// }\n// }\n// static class pair implements Comparator<pair> {\n// int first, second;\n//\n// pair() {\n// }\n//\n// pair(int first, int second) {\n// this.first = first;\n// this.second = second;\n// }\n//\n// @Override\n// public int compare(pair p1, pair p2) {\n// if (p1.first == p2.first) return p1.second - p2.second;\n// return p1.first - p2.first;\n// }\n// }\n}", "Main", "public static void main(String[] args) throws IOException {\n PrintWriter out = new PrintWriter(System.out);\n Reader s = new Reader();\n int t = s.i();\n out.println(t^1);\n out.flush();\n }", "main", "{\n PrintWriter out = new PrintWriter(System.out);\n Reader s = new Reader();\n int t = s.i();\n out.println(t^1);\n out.flush();\n }", "PrintWriter out = new PrintWriter(System.out);", "out", "new PrintWriter(System.out)", "Reader s = new Reader();", "s", "new Reader()", "int t = s.i();", "t", "s.i()", "s.i", "s", "out.println(t^1)", "out.println", "out", "t^1", "t", "1", "out.flush()", "out.flush", "out", "String[] args", "args", "private static int power(int a, int n) {\n int result = 1;\n while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a);\n n /= 2;\n } else {\n result = (result * a);\n n--;\n }\n }\n return result;\n }", "power", "{\n int result = 1;\n while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a);\n n /= 2;\n } else {\n result = (result * a);\n n--;\n }\n }\n return result;\n }", "int result = 1;", "result", "1", "while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a);\n n /= 2;\n } else {\n result = (result * a);\n n--;\n }\n }", "n > 0", "n", "0", "{\n if (n % 2 == 0) {\n a = (a * a);\n n /= 2;\n } else {\n result = (result * a);\n n--;\n }\n }", "if (n % 2 == 0) {\n a = (a * a);\n n /= 2;\n } else {\n result = (result * a);\n n--;\n }", "n % 2 == 0", "n % 2", "n", "2", "0", "{\n a = (a * a);\n n /= 2;\n }", "a = (a * a)", "a", "(a * a)", "a", "a", "n /= 2", "n", "2", "{\n result = (result * a);\n n--;\n }", "result = (result * a)", "result", "(result * a)", "result", "a", "n--", "n", "return result;", "result", "int a", "a", "int n", "n", "private static int power(int a, int n, int p) {\n int result = 1;\n while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a) % p;\n n /= 2;\n } else {\n result = (result * a) % p;\n n--;\n }\n }\n return result;\n }", "power", "{\n int result = 1;\n while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a) % p;\n n /= 2;\n } else {\n result = (result * a) % p;\n n--;\n }\n }\n return result;\n }", "int result = 1;", "result", "1", "while (n > 0) {\n if (n % 2 == 0) {\n a = (a * a) % p;\n n /= 2;\n } else {\n result = (result * a) % p;\n n--;\n }\n }", "n > 0", "n", "0", "{\n if (n % 2 == 0) {\n a = (a * a) % p;\n n /= 2;\n } else {\n result = (result * a) % p;\n n--;\n }\n }", "if (n % 2 == 0) {\n a = (a * a) % p;\n n /= 2;\n } else {\n result = (result * a) % p;\n n--;\n }", "n % 2 == 0", "n % 2", "n", "2", "0", "{\n a = (a * a) % p;\n n /= 2;\n }", "a = (a * a) % p", "a", "(a * a) % p", "(a * a)", "a", "a", "p", "n /= 2", "n", "2", "{\n result = (result * a) % p;\n n--;\n }", "result = (result * a) % p", "result", "(result * a) % p", "(result * a)", "result", "a", "p", "n--", "n", "return result;", "result", "int a", "a", "int n", "n", "int p", "p", "static class Reader {\n private InputStream mIs;\n private byte[] buf = new byte[1024];\n private int curChar, numChars;\n\n public Reader() {\n this(System.in);\n }\n\n public Reader(InputStream is) {\n mIs = is;\n }\n\n public int read() {\n if (numChars == -1) throw new InputMismatchException();\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = mIs.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) return -1;\n }\n return buf[curChar++];\n }\n\n public String nextLine() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isEndOfLine(c));\n return res.toString();\n }\n\n public String s() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isSpaceChar(c));\n return res.toString();\n }\n\n public long l() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public int i() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }\n\n public double d() throws IOException {\n return Double.parseDouble(s());\n }\n\n public boolean isSpaceChar(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }\n\n public boolean isEndOfLine(int c) {\n return c == '\\n' || c == '\\r' || c == -1;\n }\n\n public int[] arr(int n) {\n int[] ret = new int[n];\n for (int i = 0; i < n; i++) {\n ret[i] = i();\n }\n return ret;\n }\n\n public long[] arrLong(int n) {\n long[] ret = new long[n];\n for (int i = 0; i < n; i++) {\n ret[i] = l();\n }\n return ret;\n }\n }", "Reader", "private InputStream mIs;", "mIs", "private byte[] buf = new byte[1024];", "buf", "new byte[1024]", "1024", "private int curChar", "curChar", "numChars;", "numChars", "public Reader() {\n this(System.in);\n }", "Reader", "{\n this(System.in);\n }", "this(System.in)", "this", "System.in", "System", "System.in", "public Reader(InputStream is) {\n mIs = is;\n }", "Reader", "{\n mIs = is;\n }", "mIs = is", "mIs", "is", "InputStream is", "is", "public int read() {\n if (numChars == -1) throw new InputMismatchException();\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = mIs.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) return -1;\n }\n return buf[curChar++];\n }", "read", "{\n if (numChars == -1) throw new InputMismatchException();\n if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = mIs.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) return -1;\n }\n return buf[curChar++];\n }", "if (numChars == -1) throw new InputMismatchException();", "numChars == -1", "numChars", "-1", "1", "throw new InputMismatchException();", "new InputMismatchException()", "if (curChar >= numChars) {\n curChar = 0;\n try {\n numChars = mIs.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) return -1;\n }", "curChar >= numChars", "curChar", "numChars", "{\n curChar = 0;\n try {\n numChars = mIs.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }\n if (numChars <= 0) return -1;\n }", "curChar = 0", "curChar", "0", "try {\n numChars = mIs.read(buf);\n } catch (IOException e) {\n throw new InputMismatchException();\n }", "catch (IOException e) {\n throw new InputMismatchException();\n }", "IOException e", "{\n throw new InputMismatchException();\n }", "throw new InputMismatchException();", "new InputMismatchException()", "{\n numChars = mIs.read(buf);\n }", "numChars = mIs.read(buf)", "numChars", "mIs.read(buf)", "mIs.read", "mIs", "buf", "if (numChars <= 0) return -1;", "numChars <= 0", "numChars", "0", "return -1;", "-1", "1", "return buf[curChar++];", "buf[curChar++]", "buf", "curChar++", "curChar", "public String nextLine() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isEndOfLine(c));\n return res.toString();\n }", "nextLine", "{\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isEndOfLine(c));\n return res.toString();\n }", "int c = read();", "c", "read()", "read", "while (isSpaceChar(c)) c = read();", "isSpaceChar(c)", "isSpaceChar", "c", "c = read()", "c", "read()", "read", "StringBuilder res = new StringBuilder();", "res", "new StringBuilder()", "do {\n res.appendCodePoint(c);\n c = read();\n } while (!isEndOfLine(c));", "!isEndOfLine(c)", "isEndOfLine(c)", "isEndOfLine", "c", "{\n res.appendCodePoint(c);\n c = read();\n }", "res.appendCodePoint(c)", "res.appendCodePoint", "res", "c", "c = read()", "c", "read()", "read", "return res.toString();", "res.toString()", "res.toString", "res", "public String s() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isSpaceChar(c));\n return res.toString();\n }", "s", "{\n int c = read();\n while (isSpaceChar(c)) c = read();\n StringBuilder res = new StringBuilder();\n do {\n res.appendCodePoint(c);\n c = read();\n } while (!isSpaceChar(c));\n return res.toString();\n }", "int c = read();", "c", "read()", "read", "while (isSpaceChar(c)) c = read();", "isSpaceChar(c)", "isSpaceChar", "c", "c = read()", "c", "read()", "read", "StringBuilder res = new StringBuilder();", "res", "new StringBuilder()", "do {\n res.appendCodePoint(c);\n c = read();\n } while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n res.appendCodePoint(c);\n c = read();\n }", "res.appendCodePoint(c)", "res.appendCodePoint", "res", "c", "c = read()", "c", "read()", "read", "return res.toString();", "res.toString()", "res.toString", "res", "public long l() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "l", "{\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n long res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "int c = read();", "c", "read()", "read", "while (isSpaceChar(c)) c = read();", "isSpaceChar(c)", "isSpaceChar", "c", "c = read()", "c", "read()", "read", "int sgn = 1;", "sgn", "1", "if (c == '-') {\n sgn = -1;\n c = read();\n }", "c == '-'", "c", "'-'", "{\n sgn = -1;\n c = read();\n }", "sgn = -1", "sgn", "-1", "1", "c = read()", "c", "read()", "read", "long res = 0;", "res", "0", "do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n }", "if (c < '0' || c > '9') throw new InputMismatchException();", "c < '0' || c > '9'", "c < '0'", "c", "'0'", "c > '9'", "c", "'9'", "throw new InputMismatchException();", "new InputMismatchException()", "res *= 10", "res", "10", "res += c - '0'", "res", "c - '0'", "c", "'0'", "c = read()", "c", "read()", "read", "return res * sgn;", "res * sgn", "res", "sgn", "public int i() {\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "i", "{\n int c = read();\n while (isSpaceChar(c)) c = read();\n int sgn = 1;\n if (c == '-') {\n sgn = -1;\n c = read();\n }\n int res = 0;\n do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));\n return res * sgn;\n }", "int c = read();", "c", "read()", "read", "while (isSpaceChar(c)) c = read();", "isSpaceChar(c)", "isSpaceChar", "c", "c = read()", "c", "read()", "read", "int sgn = 1;", "sgn", "1", "if (c == '-') {\n sgn = -1;\n c = read();\n }", "c == '-'", "c", "'-'", "{\n sgn = -1;\n c = read();\n }", "sgn = -1", "sgn", "-1", "1", "c = read()", "c", "read()", "read", "int res = 0;", "res", "0", "do {\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n } while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n if (c < '0' || c > '9') throw new InputMismatchException();\n res *= 10;\n res += c - '0';\n c = read();\n }", "if (c < '0' || c > '9') throw new InputMismatchException();", "c < '0' || c > '9'", "c < '0'", "c", "'0'", "c > '9'", "c", "'9'", "throw new InputMismatchException();", "new InputMismatchException()", "res *= 10", "res", "10", "res += c - '0'", "res", "c - '0'", "c", "'0'", "c = read()", "c", "read()", "read", "return res * sgn;", "res * sgn", "res", "sgn", "public double d() throws IOException {\n return Double.parseDouble(s());\n }", "d", "{\n return Double.parseDouble(s());\n }", "return Double.parseDouble(s());", "Double.parseDouble(s())", "Double.parseDouble", "Double", "s()", "s", "public boolean isSpaceChar(int c) {\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }", "isSpaceChar", "{\n return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n }", "return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;", "c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1", "c == '\\t'", "c == '\\r'", "c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1", "c == ' '", "c", "' '", "c == '\\n'", "c", "'\\n'", "c == '\\r'", "c", "'\\r'", "c == '\\t'", "c", "'\\t'", "c == -1", "c", "-1", "1", "int c", "c", "public boolean isEndOfLine(int c) {\n return c == '\\n' || c == '\\r' || c == -1;\n }", "isEndOfLine", "{\n return c == '\\n' || c == '\\r' || c == -1;\n }", "return c == '\\n' || c == '\\r' || c == -1;", "c == '\\n' || c == '\\r' || c == -1", "c == '\\n' || c == '\\r' || c == -1", "c == '\\n'", "c", "'\\n'", "c == '\\r'", "c", "'\\r'", "c == -1", "c", "-1", "1", "int c", "c", "public int[] arr(int n) {\n int[] ret = new int[n];\n for (int i = 0; i < n; i++) {\n ret[i] = i();\n }\n return ret;\n }", "arr", "{\n int[] ret = new int[n];\n for (int i = 0; i < n; i++) {\n ret[i] = i();\n }\n return ret;\n }", "int[] ret = new int[n];", "ret", "new int[n]", "n", "for (int i = 0; i < n; i++) {\n ret[i] = i();\n }", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "{\n ret[i] = i();\n }", "{\n ret[i] = i();\n }", "ret[i] = i()", "ret[i]", "ret", "i", "i()", "i", "return ret;", "ret", "int n", "n", "public long[] arrLong(int n) {\n long[] ret = new long[n];\n for (int i = 0; i < n; i++) {\n ret[i] = l();\n }\n return ret;\n }", "arrLong", "{\n long[] ret = new long[n];\n for (int i = 0; i < n; i++) {\n ret[i] = l();\n }\n return ret;\n }", "long[] ret = new long[n];", "ret", "new long[n]", "n", "for (int i = 0; i < n; i++) {\n ret[i] = l();\n }", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "{\n ret[i] = l();\n }", "{\n ret[i] = l();\n }", "ret[i] = l()", "ret[i]", "ret", "i", "l()", "l", "return ret;", "ret", "int n", "n" ]
import java.util.*; import java.io.*; import java.math.*; class Main { public static void main(String[] args) throws IOException { PrintWriter out = new PrintWriter(System.out); Reader s = new Reader(); int t = s.i(); out.println(t^1); out.flush(); } private static int power(int a, int n) { int result = 1; while (n > 0) { if (n % 2 == 0) { a = (a * a); n /= 2; } else { result = (result * a); n--; } } return result; } private static int power(int a, int n, int p) { int result = 1; while (n > 0) { if (n % 2 == 0) { a = (a * a) % p; n /= 2; } else { result = (result * a) % p; n--; } } return result; } static class Reader { private InputStream mIs; private byte[] buf = new byte[1024]; private int curChar, numChars; public Reader() { this(System.in); } public Reader(InputStream is) { mIs = is; } public int read() { if (numChars == -1) throw new InputMismatchException(); if (curChar >= numChars) { curChar = 0; try { numChars = mIs.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (numChars <= 0) return -1; } return buf[curChar++]; } public String nextLine() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isEndOfLine(c)); return res.toString(); } public String s() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public long l() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public int i() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public double d() throws IOException { return Double.parseDouble(s()); } public boolean isSpaceChar(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public boolean isEndOfLine(int c) { return c == '\n' || c == '\r' || c == -1; } public int[] arr(int n) { int[] ret = new int[n]; for (int i = 0; i < n; i++) { ret[i] = i(); } return ret; } public long[] arrLong(int n) { long[] ret = new long[n]; for (int i = 0; i < n; i++) { ret[i] = l(); } return ret; } } // static class pairLong implements Comparator<pairLong> { // long first, second; // // pairLong() { // } // // pairLong(long first, long second) { // this.first = first; // this.second = second; // } // // @Override // public int compare(pairLong p1, pairLong p2) { // if (p1.first == p2.first) { // if(p1.second > p2.second) return 1; // else return -1; // } // if(p1.first > p2.first) return 1; // else return -1; // } // } // static class pair implements Comparator<pair> { // int first, second; // // pair() { // } // // pair(int first, int second) { // this.first = first; // this.second = second; // } // // @Override // public int compare(pair p1, pair p2) { // if (p1.first == p2.first) return p1.second - p2.second; // return p1.first - p2.first; // } // } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 42, 4, 18, 13, 30, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 2, 13, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 35, 5 ], [ 35, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 13, 14 ], [ 14, 15 ], [ 12, 16 ], [ 16, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 16, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 27, 31 ], [ 6, 32 ], [ 32, 33 ], [ 0, 34 ], [ 34, 35 ], [ 34, 36 ] ]
[ "import java.util.*;\n\npublic class Main{\n\tpublic static void main(String[] args){\n \tScanner sc = new Scanner(System.in);\n \twhile(sc.hasNext()){\n \tint n = sc.nextInt();\n \tSystem.out.println((n+1)%2);\n }\n } \n}", "import java.util.*;", "util.*", "java", "public class Main{\n\tpublic static void main(String[] args){\n \tScanner sc = new Scanner(System.in);\n \twhile(sc.hasNext()){\n \tint n = sc.nextInt();\n \tSystem.out.println((n+1)%2);\n }\n } \n}", "Main", "public static void main(String[] args){\n \tScanner sc = new Scanner(System.in);\n \twhile(sc.hasNext()){\n \tint n = sc.nextInt();\n \tSystem.out.println((n+1)%2);\n }\n }", "main", "{\n \tScanner sc = new Scanner(System.in);\n \twhile(sc.hasNext()){\n \tint n = sc.nextInt();\n \tSystem.out.println((n+1)%2);\n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "while(sc.hasNext()){\n \tint n = sc.nextInt();\n \tSystem.out.println((n+1)%2);\n }", "sc.hasNext()", "sc.hasNext", "sc", "{\n \tint n = sc.nextInt();\n \tSystem.out.println((n+1)%2);\n }", "int n = sc.nextInt();", "n", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println((n+1)%2)", "System.out.println", "System.out", "System", "System.out", "(n+1)%2", "(n+1)", "n", "1", "2", "String[] args", "args", "public class Main{\n\tpublic static void main(String[] args){\n \tScanner sc = new Scanner(System.in);\n \twhile(sc.hasNext()){\n \tint n = sc.nextInt();\n \tSystem.out.println((n+1)%2);\n }\n } \n}", "public class Main{\n\tpublic static void main(String[] args){\n \tScanner sc = new Scanner(System.in);\n \twhile(sc.hasNext()){\n \tint n = sc.nextInt();\n \tSystem.out.println((n+1)%2);\n }\n } \n}", "Main" ]
import java.util.*; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); while(sc.hasNext()){ int n = sc.nextInt(); System.out.println((n+1)%2); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 41, 13, 20, 12, 13, 30, 41, 13, 17, 42, 2, 40, 13, 17, 30, 4, 13, 4, 18, 13, 23, 13, 12, 13, 30, 41, 13, 4, 18, 13, 4, 18, 13, 8, 2, 13, 17, 17, 17, 12, 13, 30, 41, 13, 17, 41, 13, 4, 18, 13, 42, 2, 13, 13, 30, 41, 13, 2, 2, 13, 13, 17, 14, 2, 4, 18, 13, 13, 13, 30, 0, 13, 2, 13, 17, 30, 0, 13, 13, 29, 2, 4, 18, 13, 13, 17, 23, 13, 23, 13, 12, 13, 30, 41, 13, 17, 41, 13, 4, 18, 13, 42, 2, 13, 13, 30, 41, 13, 2, 2, 13, 13, 17, 14, 2, 4, 18, 13, 13, 13, 30, 0, 13, 2, 13, 17, 30, 0, 13, 13, 14, 2, 13, 4, 18, 13, 30, 29, 40, 17, 29, 13, 23, 13, 23, 13, 6, 13, 41, 13, 20, 41, 13, 20, 12, 13, 30, 42, 40, 4, 18, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 29, 4, 18, 13, 29, 17, 12, 13, 30, 41, 13, 17, 38, 5, 13, 30, 30, 0, 13, 4, 18, 13, 14, 2, 2, 13, 17, 2, 4, 18, 13, 17, 30, 29, 17, 0, 13, 20, 29, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 269, 8 ], [ 269, 9 ], [ 9, 10 ], [ 9, 11 ], [ 269, 12 ], [ 12, 13 ], [ 12, 14 ], [ 269, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 21, 26 ], [ 26, 27 ], [ 27, 28 ], [ 17, 29 ], [ 29, 30 ], [ 30, 31 ], [ 15, 32 ], [ 32, 33 ], [ 269, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 36, 42 ], [ 42, 43 ], [ 43, 44 ], [ 42, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 45, 49 ], [ 45, 50 ], [ 269, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 53, 57 ], [ 57, 58 ], [ 57, 59 ], [ 59, 60 ], [ 60, 61 ], [ 53, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 62, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 69, 73 ], [ 66, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 76, 79 ], [ 75, 80 ], [ 74, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 84, 85 ], [ 84, 86 ], [ 74, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 53, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 93, 96 ], [ 92, 97 ], [ 51, 98 ], [ 98, 99 ], [ 51, 100 ], [ 100, 101 ], [ 269, 102 ], [ 102, 103 ], [ 102, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 104, 108 ], [ 108, 109 ], [ 108, 110 ], [ 110, 111 ], [ 111, 112 ], [ 104, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 117 ], [ 117, 118 ], [ 118, 119 ], [ 118, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 120, 124 ], [ 117, 125 ], [ 125, 126 ], [ 126, 127 ], [ 127, 128 ], [ 128, 129 ], [ 127, 130 ], [ 126, 131 ], [ 125, 132 ], [ 132, 133 ], [ 133, 134 ], [ 133, 135 ], [ 135, 136 ], [ 135, 137 ], [ 125, 138 ], [ 138, 139 ], [ 139, 140 ], [ 139, 141 ], [ 104, 142 ], [ 142, 143 ], [ 143, 144 ], [ 143, 145 ], [ 145, 146 ], [ 146, 147 ], [ 142, 148 ], [ 148, 149 ], [ 149, 150 ], [ 150, 151 ], [ 104, 152 ], [ 152, 153 ], [ 102, 154 ], [ 154, 155 ], [ 102, 156 ], [ 156, 157 ], [ 269, 158 ], [ 158, 159 ], [ 158, 160 ], [ 160, 161 ], [ 160, 162 ], [ 158, 163 ], [ 163, 164 ], [ 163, 165 ], [ 158, 166 ], [ 166, 167 ], [ 166, 168 ], [ 168, 169 ], [ 169, 170 ], [ 170, 171 ], [ 171, 172 ], [ 172, 173 ], [ 169, 174 ], [ 174, 175 ], [ 175, 176 ], [ 176, 177 ], [ 176, 178 ], [ 178, 179 ], [ 179, 180 ], [ 180, 181 ], [ 175, 182 ], [ 182, 183 ], [ 183, 184 ], [ 183, 185 ], [ 168, 186 ], [ 186, 187 ], [ 187, 188 ], [ 188, 189 ], [ 158, 190 ], [ 190, 191 ], [ 190, 192 ], [ 192, 193 ], [ 193, 194 ], [ 194, 195 ], [ 195, 196 ], [ 194, 197 ], [ 197, 198 ], [ 158, 199 ], [ 199, 200 ], [ 199, 201 ], [ 201, 202 ], [ 202, 203 ], [ 203, 204 ], [ 204, 205 ], [ 203, 206 ], [ 206, 207 ], [ 158, 208 ], [ 208, 209 ], [ 208, 210 ], [ 210, 211 ], [ 211, 212 ], [ 212, 213 ], [ 213, 214 ], [ 212, 215 ], [ 215, 216 ], [ 158, 217 ], [ 217, 218 ], [ 217, 219 ], [ 219, 220 ], [ 220, 221 ], [ 221, 222 ], [ 221, 223 ], [ 223, 224 ], [ 224, 225 ], [ 225, 226 ], [ 220, 227 ], [ 227, 228 ], [ 228, 229 ], [ 229, 230 ], [ 230, 231 ], [ 219, 232 ], [ 232, 233 ], [ 158, 234 ], [ 234, 235 ], [ 234, 236 ], [ 236, 237 ], [ 237, 238 ], [ 237, 239 ], [ 236, 240 ], [ 240, 241 ], [ 241, 242 ], [ 241, 243 ], [ 240, 244 ], [ 244, 245 ], [ 245, 246 ], [ 245, 247 ], [ 247, 248 ], [ 248, 249 ], [ 236, 250 ], [ 250, 251 ], [ 251, 252 ], [ 252, 253 ], [ 252, 254 ], [ 251, 255 ], [ 255, 256 ], [ 256, 257 ], [ 257, 258 ], [ 255, 259 ], [ 250, 260 ], [ 260, 261 ], [ 261, 262 ], [ 236, 263 ], [ 263, 264 ], [ 263, 265 ], [ 236, 266 ], [ 266, 267 ], [ 0, 268 ], [ 268, 269 ], [ 268, 270 ] ]
[ "/*\n Author: @__goku__\n [email protected]\n\n `\\-. `\n \\ `. `\n \\ \\ |\n __.._ | \\. S O N - G O K U\n ..---~~ ~ . | Y\n ~-. `| |\n `. `~~--.\n \\ ~.\n \\ \\__. . -- - .\n .-~~~~~ , , ~~~~~~---...._\n .-~___ ,'/ ,'/ ,'\\ __...---~~~\n ~-. /._\\_( ,(/_. 7,-. ~~---...__\n _...>- P\"\"6=`_/\"6\"~ 6) ___...--~~~\n ~~--._ \\`--') `---' 9' _..--~~~\n ~\\ ~~/_ ~~~ /`-.--~~\n `. --- .' \\_\n `. \" _.-' | ~-.,-------._\n ..._../~~ ./ .-' .-~~~-.\n ,--~~~ ,'...\\` _./.----~~.'/ /' `-\n _.-( |\\ `/~ _____..-' / / _.-~~`.\n / | /. ^---~~~~ ' / / ,' ~. \\\n ( / ( . _ ' /' / ,/ \\ )\n (`. | `\\ - - - - ~ /' ( / . |\n \\.\\| \\ /' \\ |`. /\n /.'\\\\ `\\ /' ~-\\ . /\\\n /, ( `\\ /' `.___..- \\\n | | \\ `\\_/' // \\. |\n | | | _Seal_ /' | | |\n */\n\nimport java.io.*;\nimport java.util.*;\n\npublic class Main\n{\n static PrintWriter out = new PrintWriter((System.out));\n static Kioken sc = new Kioken();\n\n public static void main(String args[]) throws IOException\n {\n int t = 1;\n //t = sc.nextInt();\n while (t-- > 0)\n {\n kamehameha();\n }\n out.close();\n }\n\n public static void kamehameha()\n {\n int n=sc.nextInt();\n out.println(n==1?0:1);\n }\n\n public static int lower_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0, e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) <= k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n return Math.abs(s) - 1;\n }\n\n public static int upper_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0;\n int e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) < k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n if (s == ar.size())\n {\n return -1;\n }\n return s;\n }\n\n static class Kioken\n {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(\"\");\n\n public String next()\n {\n while (!st.hasMoreTokens())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n public int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n public long nextLong()\n {\n return Long.parseLong(next());\n }\n\n public double nextDouble()\n {\n return Double.parseDouble(next());\n }\n\n public String nextLine()\n {\n try\n {\n return br.readLine();\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n return null;\n }\n\n public boolean hasNext()\n {\n String next = null;\n try\n {\n next = br.readLine();\n }\n catch (Exception e)\n {\n }\n if (next == null || next.length() == 0)\n {\n return false;\n }\n st = new StringTokenizer(next);\n return true;\n }\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "public class Main\n{\n static PrintWriter out = new PrintWriter((System.out));\n static Kioken sc = new Kioken();\n\n public static void main(String args[]) throws IOException\n {\n int t = 1;\n //t = sc.nextInt();\n while (t-- > 0)\n {\n kamehameha();\n }\n out.close();\n }\n\n public static void kamehameha()\n {\n int n=sc.nextInt();\n out.println(n==1?0:1);\n }\n\n public static int lower_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0, e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) <= k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n return Math.abs(s) - 1;\n }\n\n public static int upper_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0;\n int e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) < k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n if (s == ar.size())\n {\n return -1;\n }\n return s;\n }\n\n static class Kioken\n {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(\"\");\n\n public String next()\n {\n while (!st.hasMoreTokens())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n public int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n public long nextLong()\n {\n return Long.parseLong(next());\n }\n\n public double nextDouble()\n {\n return Double.parseDouble(next());\n }\n\n public String nextLine()\n {\n try\n {\n return br.readLine();\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n return null;\n }\n\n public boolean hasNext()\n {\n String next = null;\n try\n {\n next = br.readLine();\n }\n catch (Exception e)\n {\n }\n if (next == null || next.length() == 0)\n {\n return false;\n }\n st = new StringTokenizer(next);\n return true;\n }\n }\n}", "Main", "static PrintWriter out = new PrintWriter((System.out));", "out", "new PrintWriter((System.out))", "static Kioken sc = new Kioken();", "sc", "new Kioken()", "public static void main(String args[]) throws IOException\n {\n int t = 1;\n //t = sc.nextInt();\n while (t-- > 0)\n {\n kamehameha();\n }\n out.close();\n }", "main", "{\n int t = 1;\n //t = sc.nextInt();\n while (t-- > 0)\n {\n kamehameha();\n }\n out.close();\n }", "int t = 1;", "t", "1", "while (t-- > 0)\n {\n kamehameha();\n }", "t-- > 0", "t--", "t", "0", "{\n kamehameha();\n }", "kamehameha()", "kamehameha", "out.close()", "out.close", "out", "String args[]", "args", "public static void kamehameha()\n {\n int n=sc.nextInt();\n out.println(n==1?0:1);\n }", "kamehameha", "{\n int n=sc.nextInt();\n out.println(n==1?0:1);\n }", "int n=sc.nextInt();", "n", "sc.nextInt()", "sc.nextInt", "sc", "out.println(n==1?0:1)", "out.println", "out", "n==1?0:1", "n==1", "n", "1", "0", "1", "public static int lower_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0, e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) <= k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n return Math.abs(s) - 1;\n }", "lower_bound", "{\n int s = 0, e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) <= k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n return Math.abs(s) - 1;\n }", "int s = 0", "s", "0", "e = ar.size();", "e", "ar.size()", "ar.size", "ar", "while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) <= k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }", "s != e", "s", "e", "{\n int mid = s + e >> 1;\n if (ar.get(mid) <= k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }", "int mid = s + e >> 1;", "mid", "s + e >> 1", "s + e", "s", "e", "1", "if (ar.get(mid) <= k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }", "ar.get(mid) <= k", "ar.get(mid)", "ar.get", "ar", "mid", "k", "{\n s = mid + 1;\n }", "s = mid + 1", "s", "mid + 1", "mid", "1", "{\n e = mid;\n }", "e = mid", "e", "mid", "return Math.abs(s) - 1;", "Math.abs(s) - 1", "Math.abs(s)", "Math.abs", "Math", "s", "1", "ArrayList<Integer> ar", "ar", "int k", "k", "public static int upper_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0;\n int e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) < k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n if (s == ar.size())\n {\n return -1;\n }\n return s;\n }", "upper_bound", "{\n int s = 0;\n int e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) < k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n if (s == ar.size())\n {\n return -1;\n }\n return s;\n }", "int s = 0;", "s", "0", "int e = ar.size();", "e", "ar.size()", "ar.size", "ar", "while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) < k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }", "s != e", "s", "e", "{\n int mid = s + e >> 1;\n if (ar.get(mid) < k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }", "int mid = s + e >> 1;", "mid", "s + e >> 1", "s + e", "s", "e", "1", "if (ar.get(mid) < k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }", "ar.get(mid) < k", "ar.get(mid)", "ar.get", "ar", "mid", "k", "{\n s = mid + 1;\n }", "s = mid + 1", "s", "mid + 1", "mid", "1", "{\n e = mid;\n }", "e = mid", "e", "mid", "if (s == ar.size())\n {\n return -1;\n }", "s == ar.size()", "s", "ar.size()", "ar.size", "ar", "{\n return -1;\n }", "return -1;", "-1", "1", "return s;", "s", "ArrayList<Integer> ar", "ar", "int k", "k", "static class Kioken\n {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(\"\");\n\n public String next()\n {\n while (!st.hasMoreTokens())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n public int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n public long nextLong()\n {\n return Long.parseLong(next());\n }\n\n public double nextDouble()\n {\n return Double.parseDouble(next());\n }\n\n public String nextLine()\n {\n try\n {\n return br.readLine();\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n return null;\n }\n\n public boolean hasNext()\n {\n String next = null;\n try\n {\n next = br.readLine();\n }\n catch (Exception e)\n {\n }\n if (next == null || next.length() == 0)\n {\n return false;\n }\n st = new StringTokenizer(next);\n return true;\n }\n }", "Kioken", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "StringTokenizer st = new StringTokenizer(\"\");", "st", "new StringTokenizer(\"\")", "public String next()\n {\n while (!st.hasMoreTokens())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "next", "{\n while (!st.hasMoreTokens())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "while (!st.hasMoreTokens())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n }", "!st.hasMoreTokens()", "st.hasMoreTokens()", "st.hasMoreTokens", "st", "{\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n }", "try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }", "catch (Exception e)\n {\n e.printStackTrace();\n }", "Exception e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n st = new StringTokenizer(br.readLine());\n }", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "public int nextInt()\n {\n return Integer.parseInt(next());\n }", "nextInt", "{\n return Integer.parseInt(next());\n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "public long nextLong()\n {\n return Long.parseLong(next());\n }", "nextLong", "{\n return Long.parseLong(next());\n }", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "public double nextDouble()\n {\n return Double.parseDouble(next());\n }", "nextDouble", "{\n return Double.parseDouble(next());\n }", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "public String nextLine()\n {\n try\n {\n return br.readLine();\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n return null;\n }", "nextLine", "{\n try\n {\n return br.readLine();\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n return null;\n }", "try\n {\n return br.readLine();\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }", "catch (Exception e)\n {\n e.printStackTrace();\n }", "Exception e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n return br.readLine();\n }", "return br.readLine();", "br.readLine()", "br.readLine", "br", "return null;", "null", "public boolean hasNext()\n {\n String next = null;\n try\n {\n next = br.readLine();\n }\n catch (Exception e)\n {\n }\n if (next == null || next.length() == 0)\n {\n return false;\n }\n st = new StringTokenizer(next);\n return true;\n }", "hasNext", "{\n String next = null;\n try\n {\n next = br.readLine();\n }\n catch (Exception e)\n {\n }\n if (next == null || next.length() == 0)\n {\n return false;\n }\n st = new StringTokenizer(next);\n return true;\n }", "String next = null;", "next", "null", "try\n {\n next = br.readLine();\n }\n catch (Exception e)\n {\n }", "catch (Exception e)\n {\n }", "Exception e", "{\n }", "{\n next = br.readLine();\n }", "next = br.readLine()", "next", "br.readLine()", "br.readLine", "br", "if (next == null || next.length() == 0)\n {\n return false;\n }", "next == null || next.length() == 0", "next == null", "next", "null", "next.length() == 0", "next.length()", "next.length", "next", "0", "{\n return false;\n }", "return false;", "false", "st = new StringTokenizer(next)", "st", "new StringTokenizer(next)", "return true;", "true", "public class Main\n{\n static PrintWriter out = new PrintWriter((System.out));\n static Kioken sc = new Kioken();\n\n public static void main(String args[]) throws IOException\n {\n int t = 1;\n //t = sc.nextInt();\n while (t-- > 0)\n {\n kamehameha();\n }\n out.close();\n }\n\n public static void kamehameha()\n {\n int n=sc.nextInt();\n out.println(n==1?0:1);\n }\n\n public static int lower_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0, e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) <= k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n return Math.abs(s) - 1;\n }\n\n public static int upper_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0;\n int e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) < k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n if (s == ar.size())\n {\n return -1;\n }\n return s;\n }\n\n static class Kioken\n {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(\"\");\n\n public String next()\n {\n while (!st.hasMoreTokens())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n public int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n public long nextLong()\n {\n return Long.parseLong(next());\n }\n\n public double nextDouble()\n {\n return Double.parseDouble(next());\n }\n\n public String nextLine()\n {\n try\n {\n return br.readLine();\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n return null;\n }\n\n public boolean hasNext()\n {\n String next = null;\n try\n {\n next = br.readLine();\n }\n catch (Exception e)\n {\n }\n if (next == null || next.length() == 0)\n {\n return false;\n }\n st = new StringTokenizer(next);\n return true;\n }\n }\n}", "public class Main\n{\n static PrintWriter out = new PrintWriter((System.out));\n static Kioken sc = new Kioken();\n\n public static void main(String args[]) throws IOException\n {\n int t = 1;\n //t = sc.nextInt();\n while (t-- > 0)\n {\n kamehameha();\n }\n out.close();\n }\n\n public static void kamehameha()\n {\n int n=sc.nextInt();\n out.println(n==1?0:1);\n }\n\n public static int lower_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0, e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) <= k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n return Math.abs(s) - 1;\n }\n\n public static int upper_bound(ArrayList<Integer> ar, int k)\n {\n int s = 0;\n int e = ar.size();\n while (s != e)\n {\n int mid = s + e >> 1;\n if (ar.get(mid) < k)\n {\n s = mid + 1;\n }\n else\n {\n e = mid;\n }\n }\n if (s == ar.size())\n {\n return -1;\n }\n return s;\n }\n\n static class Kioken\n {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(\"\");\n\n public String next()\n {\n while (!st.hasMoreTokens())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n public int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n public long nextLong()\n {\n return Long.parseLong(next());\n }\n\n public double nextDouble()\n {\n return Double.parseDouble(next());\n }\n\n public String nextLine()\n {\n try\n {\n return br.readLine();\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n return null;\n }\n\n public boolean hasNext()\n {\n String next = null;\n try\n {\n next = br.readLine();\n }\n catch (Exception e)\n {\n }\n if (next == null || next.length() == 0)\n {\n return false;\n }\n st = new StringTokenizer(next);\n return true;\n }\n }\n}", "Main" ]
/* Author: @__goku__ [email protected] `\-. ` \ `. ` \ \ | __.._ | \. S O N - G O K U ..---~~ ~ . | Y ~-. `| | `. `~~--. \ ~. \ \__. . -- - . .-~~~~~ , , ~~~~~~---...._ .-~___ ,'/ ,'/ ,'\ __...---~~~ ~-. /._\_( ,(/_. 7,-. ~~---...__ _...>- P""6=`_/"6"~ 6) ___...--~~~ ~~--._ \`--') `---' 9' _..--~~~ ~\ ~~/_ ~~~ /`-.--~~ `. --- .' \_ `. " _.-' | ~-.,-------._ ..._../~~ ./ .-' .-~~~-. ,--~~~ ,'...\` _./.----~~.'/ /' `- _.-( |\ `/~ _____..-' / / _.-~~`. / | /. ^---~~~~ ' / / ,' ~. \ ( / ( . _ ' /' / ,/ \ ) (`. | `\ - - - - ~ /' ( / . | \.\| \ /' \ |`. / /.'\\ `\ /' ~-\ . /\ /, ( `\ /' `.___..- \ | | \ `\_/' // \. | | | | _Seal_ /' | | | */ import java.io.*; import java.util.*; public class Main { static PrintWriter out = new PrintWriter((System.out)); static Kioken sc = new Kioken(); public static void main(String args[]) throws IOException { int t = 1; //t = sc.nextInt(); while (t-- > 0) { kamehameha(); } out.close(); } public static void kamehameha() { int n=sc.nextInt(); out.println(n==1?0:1); } public static int lower_bound(ArrayList<Integer> ar, int k) { int s = 0, e = ar.size(); while (s != e) { int mid = s + e >> 1; if (ar.get(mid) <= k) { s = mid + 1; } else { e = mid; } } return Math.abs(s) - 1; } public static int upper_bound(ArrayList<Integer> ar, int k) { int s = 0; int e = ar.size(); while (s != e) { int mid = s + e >> 1; if (ar.get(mid) < k) { s = mid + 1; } else { e = mid; } } if (s == ar.size()) { return -1; } return s; } static class Kioken { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public String next() { while (!st.hasMoreTokens()) { try { st = new StringTokenizer(br.readLine()); } catch (Exception e) { e.printStackTrace(); } } return st.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String nextLine() { try { return br.readLine(); } catch (Exception e) { e.printStackTrace(); } return null; } public boolean hasNext() { String next = null; try { next = br.readLine(); } catch (Exception e) { } if (next == null || next.length() == 0) { return false; } st = new StringTokenizer(next); return true; } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 20, 23, 13, 12, 13, 30, 4, 18, 20, 6, 13, 12, 13, 30, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 54, 11 ], [ 54, 12 ], [ 12, 13 ], [ 12, 14 ], [ 54, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 15, 19 ], [ 19, 20 ], [ 54, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 25, 26 ], [ 54, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 31, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 37, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 41, 46 ], [ 37, 47 ], [ 47, 48 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 47, 52 ], [ 0, 53 ], [ 53, 54 ], [ 53, 55 ] ]
[ "import java.awt.*;\nimport java.io.*;\nimport java.util.*;\n \npublic class Main {\n\tScanner sc = new Scanner(System.in);\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n\tpublic Main(){\n\t\tnew TestA().doIt();\n\t}\n\tclass TestA{\n\t\tvoid doIt() {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0)System.out.println(1);\n\t\t\telse System.out.println(0);\n\t\t}\n\t}\n}", "import java.awt.*;", "awt.*", "java", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "public class Main {\n\tScanner sc = new Scanner(System.in);\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n\tpublic Main(){\n\t\tnew TestA().doIt();\n\t}\n\tclass TestA{\n\t\tvoid doIt() {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0)System.out.println(1);\n\t\t\telse System.out.println(0);\n\t\t}\n\t}\n}", "Main", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "public static void main(String[] args){\n\t\tnew Main();\n\t}", "main", "{\n\t\tnew Main();\n\t}", "new Main()", "String[] args", "args", "public Main(){\n\t\tnew TestA().doIt();\n\t}", "Main", "{\n\t\tnew TestA().doIt();\n\t}", "new TestA().doIt()", "new TestA().doIt", "new TestA()", "class TestA{\n\t\tvoid doIt() {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0)System.out.println(1);\n\t\t\telse System.out.println(0);\n\t\t}\n\t}", "TestA", "void doIt() {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0)System.out.println(1);\n\t\t\telse System.out.println(0);\n\t\t}", "doIt", "{\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0)System.out.println(1);\n\t\t\telse System.out.println(0);\n\t\t}", "int n = sc.nextInt();", "n", "sc.nextInt()", "sc.nextInt", "sc", "if(n == 0)System.out.println(1);\n\t\t\telse System.out.println(0);", "n == 0", "n", "0", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "public class Main {\n\tScanner sc = new Scanner(System.in);\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n\tpublic Main(){\n\t\tnew TestA().doIt();\n\t}\n\tclass TestA{\n\t\tvoid doIt() {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0)System.out.println(1);\n\t\t\telse System.out.println(0);\n\t\t}\n\t}\n}", "public class Main {\n\tScanner sc = new Scanner(System.in);\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n\tpublic Main(){\n\t\tnew TestA().doIt();\n\t}\n\tclass TestA{\n\t\tvoid doIt() {\n\t\t\tint n = sc.nextInt();\n\t\t\tif(n == 0)System.out.println(1);\n\t\t\telse System.out.println(0);\n\t\t}\n\t}\n}", "Main" ]
import java.awt.*; import java.io.*; import java.util.*; public class Main { Scanner sc = new Scanner(System.in); public static void main(String[] args){ new Main(); } public Main(){ new TestA().doIt(); } class TestA{ void doIt() { int n = sc.nextInt(); if(n == 0)System.out.println(1); else System.out.println(0); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 38, 5, 13, 30, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 42, 5 ], [ 42, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 10, 11 ], [ 10, 12 ], [ 9, 13 ], [ 13, 14 ], [ 14, 15 ], [ 14, 16 ], [ 13, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 13, 22 ], [ 22, 23 ], [ 22, 24 ], [ 13, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 25, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 13, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 33, 38 ], [ 6, 39 ], [ 39, 40 ], [ 0, 41 ], [ 41, 42 ], [ 41, 43 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t int x = sc.nextInt();\n\t\t\tint ans = 0;\n\t\t\tif (x == 0) {\n\t\t\t\tans = 1;\n\t\t\t}\n System.out.println(ans);\n\n\t\t} catch (Exception e) {\n\t\t\t// TODO: handle exception\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t int x = sc.nextInt();\n\t\t\tint ans = 0;\n\t\t\tif (x == 0) {\n\t\t\t\tans = 1;\n\t\t\t}\n System.out.println(ans);\n\n\t\t} catch (Exception e) {\n\t\t\t// TODO: handle exception\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t int x = sc.nextInt();\n\t\t\tint ans = 0;\n\t\t\tif (x == 0) {\n\t\t\t\tans = 1;\n\t\t\t}\n System.out.println(ans);\n\n\t\t} catch (Exception e) {\n\t\t\t// TODO: handle exception\n\t\t}\n\t}", "main", "{\n\t\t// TODO Auto-generated method stub\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t int x = sc.nextInt();\n\t\t\tint ans = 0;\n\t\t\tif (x == 0) {\n\t\t\t\tans = 1;\n\t\t\t}\n System.out.println(ans);\n\n\t\t} catch (Exception e) {\n\t\t\t// TODO: handle exception\n\t\t}\n\t}", "try (Scanner sc = new Scanner(System.in)) {\n\t\t int x = sc.nextInt();\n\t\t\tint ans = 0;\n\t\t\tif (x == 0) {\n\t\t\t\tans = 1;\n\t\t\t}\n System.out.println(ans);\n\n\t\t} catch (Exception e) {\n\t\t\t// TODO: handle exception\n\t\t}", "catch (Exception e) {\n\t\t\t// TODO: handle exception\n\t\t}", "Exception e", "{\n\t\t\t// TODO: handle exception\n\t\t}", "{\n\t\t int x = sc.nextInt();\n\t\t\tint ans = 0;\n\t\t\tif (x == 0) {\n\t\t\t\tans = 1;\n\t\t\t}\n System.out.println(ans);\n\n\t\t}", "Scanner sc = new Scanner(System.in)", "Scanner sc = new Scanner(System.in)", "new Scanner(System.in)", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int ans = 0;", "ans", "0", "if (x == 0) {\n\t\t\t\tans = 1;\n\t\t\t}", "x == 0", "x", "0", "{\n\t\t\t\tans = 1;\n\t\t\t}", "ans = 1", "ans", "1", "System.out.println(ans)", "System.out.println", "System.out", "System", "System.out", "ans", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t int x = sc.nextInt();\n\t\t\tint ans = 0;\n\t\t\tif (x == 0) {\n\t\t\t\tans = 1;\n\t\t\t}\n System.out.println(ans);\n\n\t\t} catch (Exception e) {\n\t\t\t// TODO: handle exception\n\t\t}\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t int x = sc.nextInt();\n\t\t\tint ans = 0;\n\t\t\tif (x == 0) {\n\t\t\t\tans = 1;\n\t\t\t}\n System.out.println(ans);\n\n\t\t} catch (Exception e) {\n\t\t\t// TODO: handle exception\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub try (Scanner sc = new Scanner(System.in)) { int x = sc.nextInt(); int ans = 0; if (x == 0) { ans = 1; } System.out.println(ans); } catch (Exception e) { // TODO: handle exception } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 13, 17, 4, 18, 13, 17, 4, 18, 13, 4, 18, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 17, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 4, 18, 13, 29, 13, 6, 13, 41, 13, 2, 17, 17, 41, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 0, 13, 20, 13, 0, 13, 0, 13, 17, 12, 13, 30, 0, 13, 20, 0, 13, 20, 13, 0, 13, 0, 13, 17, 23, 13, 12, 13, 30, 41, 13, 20, 17, 41, 13, 17, 41, 13, 42, 2, 0, 13, 4, 13, 40, 17, 30, 14, 2, 13, 17, 3, 0, 18, 13, 40, 13, 13, 29, 20, 12, 13, 30, 41, 13, 17, 41, 13, 4, 13, 42, 2, 13, 17, 0, 13, 4, 13, 41, 13, 2, 13, 17, 14, 13, 0, 13, 4, 13, 42, 2, 2, 0, 13, 4, 13, 17, 2, 13, 17, 30, 0, 13, 2, 2, 2, 13, 17, 13, 17, 14, 13, 29, 40, 13, 29, 13, 12, 13, 30, 41, 13, 17, 41, 13, 4, 13, 42, 2, 13, 17, 0, 13, 4, 13, 41, 13, 2, 13, 17, 14, 13, 0, 13, 4, 13, 42, 2, 2, 0, 13, 4, 13, 17, 2, 13, 17, 30, 0, 13, 2, 2, 2, 13, 17, 13, 17, 14, 13, 29, 40, 13, 29, 13, 12, 13, 30, 41, 13, 17, 41, 13, 17, 41, 13, 4, 13, 42, 2, 13, 17, 0, 13, 4, 13, 41, 13, 2, 13, 17, 14, 13, 0, 13, 4, 13, 42, 2, 2, 0, 13, 4, 13, 17, 2, 13, 17, 30, 0, 13, 2, 2, 2, 13, 17, 13, 17, 14, 2, 13, 17, 30, 42, 2, 2, 0, 13, 4, 13, 17, 2, 13, 17, 30, 0, 13, 2, 2, 13, 17, 0, 13, 17, 14, 13, 29, 40, 13, 29, 13, 12, 13, 30, 0, 13, 4, 18, 13, 13, 0, 13, 17, 13, 14, 2, 13, 40, 17, 0, 18, 13, 17, 40, 17, 12, 13, 30, 14, 2, 13, 13, 4, 13, 29, 18, 13, 40, 13, 12, 13, 30, 14, 2, 13, 17, 29, 4, 18, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 453, 8 ], [ 453, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 13, 14 ], [ 13, 15 ], [ 15, 16 ], [ 16, 17 ], [ 17, 18 ], [ 12, 19 ], [ 12, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 24, 26 ], [ 20, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 20, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 32, 36 ], [ 36, 37 ], [ 37, 38 ], [ 36, 39 ], [ 32, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 20, 44 ], [ 44, 45 ], [ 45, 46 ], [ 20, 47 ], [ 47, 48 ], [ 48, 49 ], [ 9, 50 ], [ 50, 51 ], [ 453, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 52, 56 ], [ 56, 57 ], [ 52, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 52, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 72, 73 ], [ 73, 74 ], [ 74, 75 ], [ 67, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 77, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 66, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 52, 92 ], [ 92, 93 ], [ 92, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 96, 99 ], [ 99, 100 ], [ 52, 101 ], [ 101, 102 ], [ 101, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 103, 107 ], [ 107, 108 ], [ 108, 109 ], [ 108, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 107, 114 ], [ 114, 115 ], [ 115, 116 ], [ 115, 117 ], [ 117, 118 ], [ 118, 119 ], [ 103, 120 ], [ 120, 121 ], [ 453, 122 ], [ 122, 123 ], [ 122, 124 ], [ 124, 125 ], [ 124, 126 ], [ 126, 127 ], [ 126, 128 ], [ 122, 129 ], [ 129, 130 ], [ 122, 131 ], [ 131, 132 ], [ 122, 133 ], [ 133, 134 ], [ 122, 135 ], [ 135, 136 ], [ 122, 137 ], [ 137, 138 ], [ 137, 139 ], [ 139, 140 ], [ 140, 141 ], [ 140, 142 ], [ 139, 143 ], [ 143, 144 ], [ 143, 145 ], [ 139, 147 ], [ 147, 148 ], [ 147, 149 ], [ 149, 150 ], [ 149, 151 ], [ 122, 152 ], [ 152, 153 ], [ 152, 154 ], [ 154, 155 ], [ 155, 156 ], [ 155, 157 ], [ 154, 158 ], [ 158, 159 ], [ 158, 160 ], [ 154, 162 ], [ 162, 163 ], [ 162, 164 ], [ 164, 165 ], [ 164, 166 ], [ 152, 167 ], [ 167, 168 ], [ 122, 169 ], [ 169, 170 ], [ 169, 171 ], [ 171, 172 ], [ 172, 173 ], [ 172, 174 ], [ 171, 176 ], [ 176, 177 ], [ 176, 178 ], [ 171, 179 ], [ 179, 180 ], [ 171, 181 ], [ 181, 182 ], [ 182, 183 ], [ 183, 184 ], [ 183, 185 ], [ 185, 186 ], [ 182, 187 ], [ 187, 188 ], [ 181, 189 ], [ 189, 190 ], [ 190, 191 ], [ 191, 192 ], [ 191, 193 ], [ 190, 194 ], [ 189, 195 ], [ 195, 196 ], [ 196, 197 ], [ 196, 198 ], [ 198, 199 ], [ 195, 200 ], [ 171, 201 ], [ 201, 202 ], [ 122, 203 ], [ 203, 204 ], [ 203, 205 ], [ 205, 206 ], [ 206, 207 ], [ 206, 208 ], [ 205, 209 ], [ 209, 210 ], [ 209, 211 ], [ 211, 212 ], [ 205, 213 ], [ 213, 214 ], [ 214, 215 ], [ 214, 216 ], [ 213, 217 ], [ 217, 218 ], [ 217, 219 ], [ 219, 220 ], [ 205, 221 ], [ 221, 222 ], [ 221, 223 ], [ 223, 224 ], [ 223, 225 ], [ 205, 226 ], [ 226, 227 ], [ 226, 228 ], [ 228, 229 ], [ 228, 230 ], [ 230, 231 ], [ 205, 232 ], [ 232, 233 ], [ 233, 234 ], [ 234, 235 ], [ 235, 236 ], [ 235, 237 ], [ 237, 238 ], [ 234, 239 ], [ 233, 240 ], [ 240, 241 ], [ 240, 242 ], [ 232, 243 ], [ 243, 244 ], [ 244, 245 ], [ 244, 246 ], [ 246, 247 ], [ 247, 248 ], [ 248, 249 ], [ 248, 250 ], [ 247, 251 ], [ 246, 252 ], [ 205, 253 ], [ 253, 254 ], [ 253, 255 ], [ 255, 256 ], [ 256, 257 ], [ 205, 258 ], [ 258, 259 ], [ 122, 260 ], [ 260, 261 ], [ 260, 262 ], [ 262, 263 ], [ 263, 264 ], [ 263, 265 ], [ 262, 266 ], [ 266, 267 ], [ 266, 268 ], [ 268, 269 ], [ 262, 270 ], [ 270, 271 ], [ 271, 272 ], [ 271, 273 ], [ 270, 274 ], [ 274, 275 ], [ 274, 276 ], [ 276, 277 ], [ 262, 278 ], [ 278, 279 ], [ 278, 280 ], [ 280, 281 ], [ 280, 282 ], [ 262, 283 ], [ 283, 284 ], [ 283, 285 ], [ 285, 286 ], [ 285, 287 ], [ 287, 288 ], [ 262, 289 ], [ 289, 290 ], [ 290, 291 ], [ 291, 292 ], [ 292, 293 ], [ 292, 294 ], [ 294, 295 ], [ 291, 296 ], [ 290, 297 ], [ 297, 298 ], [ 297, 299 ], [ 289, 300 ], [ 300, 301 ], [ 301, 302 ], [ 301, 303 ], [ 303, 304 ], [ 304, 305 ], [ 305, 306 ], [ 305, 307 ], [ 304, 308 ], [ 303, 309 ], [ 262, 310 ], [ 310, 311 ], [ 310, 312 ], [ 312, 313 ], [ 313, 314 ], [ 262, 315 ], [ 315, 316 ], [ 122, 317 ], [ 317, 318 ], [ 317, 319 ], [ 319, 320 ], [ 320, 321 ], [ 320, 322 ], [ 319, 323 ], [ 323, 324 ], [ 323, 325 ], [ 319, 326 ], [ 326, 327 ], [ 326, 328 ], [ 328, 329 ], [ 319, 330 ], [ 330, 331 ], [ 331, 332 ], [ 331, 333 ], [ 330, 334 ], [ 334, 335 ], [ 334, 336 ], [ 336, 337 ], [ 319, 338 ], [ 338, 339 ], [ 338, 340 ], [ 340, 341 ], [ 340, 342 ], [ 319, 343 ], [ 343, 344 ], [ 343, 345 ], [ 345, 346 ], [ 345, 347 ], [ 347, 348 ], [ 319, 349 ], [ 349, 350 ], [ 350, 351 ], [ 351, 352 ], [ 352, 353 ], [ 352, 354 ], [ 354, 355 ], [ 351, 356 ], [ 350, 357 ], [ 357, 358 ], [ 357, 359 ], [ 349, 360 ], [ 360, 361 ], [ 361, 362 ], [ 361, 363 ], [ 363, 364 ], [ 364, 365 ], [ 365, 366 ], [ 365, 367 ], [ 364, 368 ], [ 363, 369 ], [ 319, 370 ], [ 370, 371 ], [ 371, 372 ], [ 371, 373 ], [ 370, 374 ], [ 374, 375 ], [ 375, 376 ], [ 376, 377 ], [ 377, 378 ], [ 378, 379 ], [ 378, 380 ], [ 380, 381 ], [ 377, 382 ], [ 376, 383 ], [ 383, 384 ], [ 383, 385 ], [ 375, 386 ], [ 386, 387 ], [ 387, 388 ], [ 387, 389 ], [ 389, 390 ], [ 390, 391 ], [ 390, 392 ], [ 389, 393 ], [ 393, 394 ], [ 393, 395 ], [ 319, 396 ], [ 396, 397 ], [ 396, 398 ], [ 398, 399 ], [ 399, 400 ], [ 319, 401 ], [ 401, 402 ], [ 122, 403 ], [ 403, 404 ], [ 403, 405 ], [ 405, 406 ], [ 406, 407 ], [ 406, 408 ], [ 408, 409 ], [ 409, 410 ], [ 408, 411 ], [ 408, 412 ], [ 412, 413 ], [ 412, 414 ], [ 408, 415 ], [ 405, 416 ], [ 416, 417 ], [ 417, 418 ], [ 417, 419 ], [ 419, 420 ], [ 416, 421 ], [ 421, 422 ], [ 422, 423 ], [ 422, 424 ], [ 421, 425 ], [ 425, 426 ], [ 122, 427 ], [ 427, 428 ], [ 427, 429 ], [ 429, 430 ], [ 430, 431 ], [ 431, 432 ], [ 431, 433 ], [ 430, 434 ], [ 434, 435 ], [ 429, 436 ], [ 436, 437 ], [ 437, 438 ], [ 437, 439 ], [ 439, 440 ], [ 122, 441 ], [ 441, 442 ], [ 441, 443 ], [ 443, 444 ], [ 444, 445 ], [ 445, 446 ], [ 445, 447 ], [ 444, 448 ], [ 443, 449 ], [ 449, 450 ], [ 450, 451 ], [ 0, 452 ], [ 452, 453 ], [ 452, 454 ] ]
[ "import java.util.*;\nimport java.io.*;\n\npublic class Main {\n\n static class FastReader\n {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader()\n {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next()\n {\n while(st==null || !st.hasMoreElements())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n String nextLine()\n {\n String str = \"\";\n\n try\n {\n str = br.readLine();\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n static class Reader\n {\n final private int BUFFER_SIZE = 1 << 16;\n private DataInputStream din;\n private byte[] buffer;\n private int bufferPointer, bytesRead;\n\n public Reader()\n {\n din = new DataInputStream(System.in);\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public Reader(String file_name) throws IOException\n {\n din = new DataInputStream(new FileInputStream(file_name));\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public String readLine() throws IOException\n {\n byte[] buf = new byte[64]; // line length\n int cnt = 0, c;\n while ((c = read()) != -1)\n {\n if (c == '\\n')\n break;\n buf[cnt++] = (byte) c;\n }\n return new String(buf, 0, cnt);\n }\n\n public int nextInt() throws IOException\n {\n int ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do\n {\n ret = ret * 10 + c - '0';\n } while ((c = read()) >= '0' && c <= '9');\n\n if (neg)\n return -ret;\n return ret;\n }\n\n public long nextLong() throws IOException\n {\n long ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n if (neg)\n return -ret;\n return ret;\n }\n\n public double nextDouble() throws IOException\n {\n double ret = 0, div = 1;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n\n if (c == '.')\n {\n while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }\n }\n\n if (neg)\n return -ret;\n return ret;\n }\n\n private void fillBuffer() throws IOException\n {\n bytesRead = din.read(buffer, bufferPointer = 0, BUFFER_SIZE);\n if (bytesRead == -1)\n buffer[0] = -1;\n }\n\n private byte read() throws IOException\n {\n if (bufferPointer == bytesRead)\n fillBuffer();\n return buffer[bufferPointer++];\n }\n\n public void close() throws IOException\n {\n if (din == null)\n return;\n din.close();\n }\n }\n\n public static void main(String[] args) throws java.lang.Exception\n {\n try\n {\n //FastReader fr = new FastReader();\n Reader fr = new Reader();\n PrintWriter out = new PrintWriter(System.out);\n\n int ele = fr.nextInt();\n\n if (ele == 1) out.println(0);\n else out.println(1);\n\n out.flush();\n out.close();\n }\n\n catch(Exception e){e.printStackTrace();}\n finally{}\n }\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "public class Main {\n\n static class FastReader\n {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader()\n {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next()\n {\n while(st==null || !st.hasMoreElements())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n String nextLine()\n {\n String str = \"\";\n\n try\n {\n str = br.readLine();\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n static class Reader\n {\n final private int BUFFER_SIZE = 1 << 16;\n private DataInputStream din;\n private byte[] buffer;\n private int bufferPointer, bytesRead;\n\n public Reader()\n {\n din = new DataInputStream(System.in);\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public Reader(String file_name) throws IOException\n {\n din = new DataInputStream(new FileInputStream(file_name));\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public String readLine() throws IOException\n {\n byte[] buf = new byte[64]; // line length\n int cnt = 0, c;\n while ((c = read()) != -1)\n {\n if (c == '\\n')\n break;\n buf[cnt++] = (byte) c;\n }\n return new String(buf, 0, cnt);\n }\n\n public int nextInt() throws IOException\n {\n int ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do\n {\n ret = ret * 10 + c - '0';\n } while ((c = read()) >= '0' && c <= '9');\n\n if (neg)\n return -ret;\n return ret;\n }\n\n public long nextLong() throws IOException\n {\n long ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n if (neg)\n return -ret;\n return ret;\n }\n\n public double nextDouble() throws IOException\n {\n double ret = 0, div = 1;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n\n if (c == '.')\n {\n while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }\n }\n\n if (neg)\n return -ret;\n return ret;\n }\n\n private void fillBuffer() throws IOException\n {\n bytesRead = din.read(buffer, bufferPointer = 0, BUFFER_SIZE);\n if (bytesRead == -1)\n buffer[0] = -1;\n }\n\n private byte read() throws IOException\n {\n if (bufferPointer == bytesRead)\n fillBuffer();\n return buffer[bufferPointer++];\n }\n\n public void close() throws IOException\n {\n if (din == null)\n return;\n din.close();\n }\n }\n\n public static void main(String[] args) throws java.lang.Exception\n {\n try\n {\n //FastReader fr = new FastReader();\n Reader fr = new Reader();\n PrintWriter out = new PrintWriter(System.out);\n\n int ele = fr.nextInt();\n\n if (ele == 1) out.println(0);\n else out.println(1);\n\n out.flush();\n out.close();\n }\n\n catch(Exception e){e.printStackTrace();}\n finally{}\n }\n}", "Main", "public static void main(String[] args) throws java.lang.Exception\n {\n try\n {\n //FastReader fr = new FastReader();\n Reader fr = new Reader();\n PrintWriter out = new PrintWriter(System.out);\n\n int ele = fr.nextInt();\n\n if (ele == 1) out.println(0);\n else out.println(1);\n\n out.flush();\n out.close();\n }\n\n catch(Exception e){e.printStackTrace();}\n finally{}\n }", "main", "{\n try\n {\n //FastReader fr = new FastReader();\n Reader fr = new Reader();\n PrintWriter out = new PrintWriter(System.out);\n\n int ele = fr.nextInt();\n\n if (ele == 1) out.println(0);\n else out.println(1);\n\n out.flush();\n out.close();\n }\n\n catch(Exception e){e.printStackTrace();}\n finally{}\n }", "try\n {\n //FastReader fr = new FastReader();\n Reader fr = new Reader();\n PrintWriter out = new PrintWriter(System.out);\n\n int ele = fr.nextInt();\n\n if (ele == 1) out.println(0);\n else out.println(1);\n\n out.flush();\n out.close();\n }\n\n catch(Exception e){e.printStackTrace();}\n finally{}", "catch(Exception e){e.printStackTrace();}", "Exception e", "{e.printStackTrace();}", "e.printStackTrace()", "e.printStackTrace", "e", "{}", "{\n //FastReader fr = new FastReader();\n Reader fr = new Reader();\n PrintWriter out = new PrintWriter(System.out);\n\n int ele = fr.nextInt();\n\n if (ele == 1) out.println(0);\n else out.println(1);\n\n out.flush();\n out.close();\n }", "Reader fr = new Reader();", "fr", "new Reader()", "PrintWriter out = new PrintWriter(System.out);", "out", "new PrintWriter(System.out)", "int ele = fr.nextInt();", "ele", "fr.nextInt()", "fr.nextInt", "fr", "if (ele == 1) out.println(0);\n else out.println(1);", "ele == 1", "ele", "1", "out.println(0)", "out.println", "out", "0", "out.println(1)", "out.println", "out", "1", "out.flush()", "out.flush", "out", "out.close()", "out.close", "out", "String[] args", "args", "static class FastReader\n {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader()\n {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next()\n {\n while(st==null || !st.hasMoreElements())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n String nextLine()\n {\n String str = \"\";\n\n try\n {\n str = br.readLine();\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n return str;\n }\n }", "FastReader", "BufferedReader br;", "br", "StringTokenizer st;", "st", "public FastReader()\n {\n br = new BufferedReader(new InputStreamReader(System.in));\n }", "FastReader", "{\n br = new BufferedReader(new InputStreamReader(System.in));\n }", "br = new BufferedReader(new InputStreamReader(System.in))", "br", "new BufferedReader(new InputStreamReader(System.in))", "String next()\n {\n while(st==null || !st.hasMoreElements())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "next", "{\n while(st==null || !st.hasMoreElements())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "while(st==null || !st.hasMoreElements())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n }", "st==null || !st.hasMoreElements()", "st==null", "st", "null", "!st.hasMoreElements()", "st.hasMoreElements()", "st.hasMoreElements", "st", "{\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n }", "try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }", "catch(IOException e)\n {\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n st = new StringTokenizer(br.readLine());\n }", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "int nextInt()\n {\n return Integer.parseInt(next());\n }", "nextInt", "{\n return Integer.parseInt(next());\n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "String nextLine()\n {\n String str = \"\";\n\n try\n {\n str = br.readLine();\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n return str;\n }", "nextLine", "{\n String str = \"\";\n\n try\n {\n str = br.readLine();\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n return str;\n }", "String str = \"\";", "str", "\"\"", "try\n {\n str = br.readLine();\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }", "catch(IOException e)\n {\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n str = br.readLine();\n }", "str = br.readLine()", "str", "br.readLine()", "br.readLine", "br", "return str;", "str", "static class Reader\n {\n final private int BUFFER_SIZE = 1 << 16;\n private DataInputStream din;\n private byte[] buffer;\n private int bufferPointer, bytesRead;\n\n public Reader()\n {\n din = new DataInputStream(System.in);\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public Reader(String file_name) throws IOException\n {\n din = new DataInputStream(new FileInputStream(file_name));\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public String readLine() throws IOException\n {\n byte[] buf = new byte[64]; // line length\n int cnt = 0, c;\n while ((c = read()) != -1)\n {\n if (c == '\\n')\n break;\n buf[cnt++] = (byte) c;\n }\n return new String(buf, 0, cnt);\n }\n\n public int nextInt() throws IOException\n {\n int ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do\n {\n ret = ret * 10 + c - '0';\n } while ((c = read()) >= '0' && c <= '9');\n\n if (neg)\n return -ret;\n return ret;\n }\n\n public long nextLong() throws IOException\n {\n long ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n if (neg)\n return -ret;\n return ret;\n }\n\n public double nextDouble() throws IOException\n {\n double ret = 0, div = 1;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n\n if (c == '.')\n {\n while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }\n }\n\n if (neg)\n return -ret;\n return ret;\n }\n\n private void fillBuffer() throws IOException\n {\n bytesRead = din.read(buffer, bufferPointer = 0, BUFFER_SIZE);\n if (bytesRead == -1)\n buffer[0] = -1;\n }\n\n private byte read() throws IOException\n {\n if (bufferPointer == bytesRead)\n fillBuffer();\n return buffer[bufferPointer++];\n }\n\n public void close() throws IOException\n {\n if (din == null)\n return;\n din.close();\n }\n }", "Reader", "final private int BUFFER_SIZE = 1 << 16;", "BUFFER_SIZE", "1 << 16", "1", "16", "private DataInputStream din;", "din", "private byte[] buffer;", "buffer", "private int bufferPointer", "bufferPointer", "bytesRead;", "bytesRead", "public Reader()\n {\n din = new DataInputStream(System.in);\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }", "Reader", "{\n din = new DataInputStream(System.in);\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }", "din = new DataInputStream(System.in)", "din", "new DataInputStream(System.in)", "buffer = new byte[BUFFER_SIZE]", "buffer", "new byte[BUFFER_SIZE]", "BUFFER_SIZE", "bufferPointer = bytesRead = 0", "bufferPointer", "bytesRead = 0", "bytesRead", "0", "public Reader(String file_name) throws IOException\n {\n din = new DataInputStream(new FileInputStream(file_name));\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }", "Reader", "{\n din = new DataInputStream(new FileInputStream(file_name));\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }", "din = new DataInputStream(new FileInputStream(file_name))", "din", "new DataInputStream(new FileInputStream(file_name))", "buffer = new byte[BUFFER_SIZE]", "buffer", "new byte[BUFFER_SIZE]", "BUFFER_SIZE", "bufferPointer = bytesRead = 0", "bufferPointer", "bytesRead = 0", "bytesRead", "0", "String file_name", "file_name", "public String readLine() throws IOException\n {\n byte[] buf = new byte[64]; // line length\n int cnt = 0, c;\n while ((c = read()) != -1)\n {\n if (c == '\\n')\n break;\n buf[cnt++] = (byte) c;\n }\n return new String(buf, 0, cnt);\n }", "readLine", "{\n byte[] buf = new byte[64]; // line length\n int cnt = 0, c;\n while ((c = read()) != -1)\n {\n if (c == '\\n')\n break;\n buf[cnt++] = (byte) c;\n }\n return new String(buf, 0, cnt);\n }", "byte[] buf = new byte[64];", "buf", "new byte[64]", "64", "int cnt = 0", "cnt", "0", "c;", "c", "while ((c = read()) != -1)\n {\n if (c == '\\n')\n break;\n buf[cnt++] = (byte) c;\n }", "(c = read()) != -1", "(c = read())", "c", "read()", "read", "-1", "1", "{\n if (c == '\\n')\n break;\n buf[cnt++] = (byte) c;\n }", "if (c == '\\n')\n break;", "c == '\\n'", "c", "'\\n'", "break;", "buf[cnt++] = (byte) c", "buf[cnt++]", "buf", "cnt++", "cnt", "(byte) c", "return new String(buf, 0, cnt);", "new String(buf, 0, cnt)", "public int nextInt() throws IOException\n {\n int ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do\n {\n ret = ret * 10 + c - '0';\n } while ((c = read()) >= '0' && c <= '9');\n\n if (neg)\n return -ret;\n return ret;\n }", "nextInt", "{\n int ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do\n {\n ret = ret * 10 + c - '0';\n } while ((c = read()) >= '0' && c <= '9');\n\n if (neg)\n return -ret;\n return ret;\n }", "int ret = 0;", "ret", "0", "byte c = read();", "c", "read()", "read", "while (c <= ' ')\n c = read();", "c <= ' '", "c", "' '", "c = read()", "c", "read()", "read", "boolean neg = (c == '-');", "neg", "(c == '-')", "c", "'-'", "if (neg)\n c = read();", "neg", "c = read()", "c", "read()", "read", "do\n {\n ret = ret * 10 + c - '0';\n } while ((c = read()) >= '0' && c <= '9');", "(c = read()) >= '0' && c <= '9'", "(c = read()) >= '0'", "(c = read())", "c", "read()", "read", "'0'", "c <= '9'", "c", "'9'", "{\n ret = ret * 10 + c - '0';\n }", "ret = ret * 10 + c - '0'", "ret", "ret * 10 + c - '0'", "ret * 10 + c", "ret * 10", "ret", "10", "c", "'0'", "if (neg)\n return -ret;", "neg", "return -ret;", "-ret", "ret", "return ret;", "ret", "public long nextLong() throws IOException\n {\n long ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n if (neg)\n return -ret;\n return ret;\n }", "nextLong", "{\n long ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n if (neg)\n return -ret;\n return ret;\n }", "long ret = 0;", "ret", "0", "byte c = read();", "c", "read()", "read", "while (c <= ' ')\n c = read();", "c <= ' '", "c", "' '", "c = read()", "c", "read()", "read", "boolean neg = (c == '-');", "neg", "(c == '-')", "c", "'-'", "if (neg)\n c = read();", "neg", "c = read()", "c", "read()", "read", "do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');", "(c = read()) >= '0' && c <= '9'", "(c = read()) >= '0'", "(c = read())", "c", "read()", "read", "'0'", "c <= '9'", "c", "'9'", "{\n ret = ret * 10 + c - '0';\n }", "ret = ret * 10 + c - '0'", "ret", "ret * 10 + c - '0'", "ret * 10 + c", "ret * 10", "ret", "10", "c", "'0'", "if (neg)\n return -ret;", "neg", "return -ret;", "-ret", "ret", "return ret;", "ret", "public double nextDouble() throws IOException\n {\n double ret = 0, div = 1;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n\n if (c == '.')\n {\n while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }\n }\n\n if (neg)\n return -ret;\n return ret;\n }", "nextDouble", "{\n double ret = 0, div = 1;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n\n if (c == '.')\n {\n while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }\n }\n\n if (neg)\n return -ret;\n return ret;\n }", "double ret = 0", "ret", "0", "div = 1;", "div", "1", "byte c = read();", "c", "read()", "read", "while (c <= ' ')\n c = read();", "c <= ' '", "c", "' '", "c = read()", "c", "read()", "read", "boolean neg = (c == '-');", "neg", "(c == '-')", "c", "'-'", "if (neg)\n c = read();", "neg", "c = read()", "c", "read()", "read", "do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');", "(c = read()) >= '0' && c <= '9'", "(c = read()) >= '0'", "(c = read())", "c", "read()", "read", "'0'", "c <= '9'", "c", "'9'", "{\n ret = ret * 10 + c - '0';\n }", "ret = ret * 10 + c - '0'", "ret", "ret * 10 + c - '0'", "ret * 10 + c", "ret * 10", "ret", "10", "c", "'0'", "if (c == '.')\n {\n while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }\n }", "c == '.'", "c", "'.'", "{\n while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }\n }", "while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }", "(c = read()) >= '0' && c <= '9'", "(c = read()) >= '0'", "(c = read())", "c", "read()", "read", "'0'", "c <= '9'", "c", "'9'", "{\n ret += (c - '0') / (div *= 10);\n }", "ret += (c - '0') / (div *= 10)", "ret", "(c - '0') / (div *= 10)", "(c - '0')", "c", "'0'", "(div *= 10)", "div", "10", "if (neg)\n return -ret;", "neg", "return -ret;", "-ret", "ret", "return ret;", "ret", "private void fillBuffer() throws IOException\n {\n bytesRead = din.read(buffer, bufferPointer = 0, BUFFER_SIZE);\n if (bytesRead == -1)\n buffer[0] = -1;\n }", "fillBuffer", "{\n bytesRead = din.read(buffer, bufferPointer = 0, BUFFER_SIZE);\n if (bytesRead == -1)\n buffer[0] = -1;\n }", "bytesRead = din.read(buffer, bufferPointer = 0, BUFFER_SIZE)", "bytesRead", "din.read(buffer, bufferPointer = 0, BUFFER_SIZE)", "din.read", "din", "buffer", "bufferPointer = 0", "bufferPointer", "0", "BUFFER_SIZE", "if (bytesRead == -1)\n buffer[0] = -1;", "bytesRead == -1", "bytesRead", "-1", "1", "buffer[0] = -1", "buffer[0]", "buffer", "0", "-1", "1", "private byte read() throws IOException\n {\n if (bufferPointer == bytesRead)\n fillBuffer();\n return buffer[bufferPointer++];\n }", "read", "{\n if (bufferPointer == bytesRead)\n fillBuffer();\n return buffer[bufferPointer++];\n }", "if (bufferPointer == bytesRead)\n fillBuffer();", "bufferPointer == bytesRead", "bufferPointer", "bytesRead", "fillBuffer()", "fillBuffer", "return buffer[bufferPointer++];", "buffer[bufferPointer++]", "buffer", "bufferPointer++", "bufferPointer", "public void close() throws IOException\n {\n if (din == null)\n return;\n din.close();\n }", "close", "{\n if (din == null)\n return;\n din.close();\n }", "if (din == null)\n return;", "din == null", "din", "null", "return;", "din.close()", "din.close", "din", "public class Main {\n\n static class FastReader\n {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader()\n {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next()\n {\n while(st==null || !st.hasMoreElements())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n String nextLine()\n {\n String str = \"\";\n\n try\n {\n str = br.readLine();\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n static class Reader\n {\n final private int BUFFER_SIZE = 1 << 16;\n private DataInputStream din;\n private byte[] buffer;\n private int bufferPointer, bytesRead;\n\n public Reader()\n {\n din = new DataInputStream(System.in);\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public Reader(String file_name) throws IOException\n {\n din = new DataInputStream(new FileInputStream(file_name));\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public String readLine() throws IOException\n {\n byte[] buf = new byte[64]; // line length\n int cnt = 0, c;\n while ((c = read()) != -1)\n {\n if (c == '\\n')\n break;\n buf[cnt++] = (byte) c;\n }\n return new String(buf, 0, cnt);\n }\n\n public int nextInt() throws IOException\n {\n int ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do\n {\n ret = ret * 10 + c - '0';\n } while ((c = read()) >= '0' && c <= '9');\n\n if (neg)\n return -ret;\n return ret;\n }\n\n public long nextLong() throws IOException\n {\n long ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n if (neg)\n return -ret;\n return ret;\n }\n\n public double nextDouble() throws IOException\n {\n double ret = 0, div = 1;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n\n if (c == '.')\n {\n while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }\n }\n\n if (neg)\n return -ret;\n return ret;\n }\n\n private void fillBuffer() throws IOException\n {\n bytesRead = din.read(buffer, bufferPointer = 0, BUFFER_SIZE);\n if (bytesRead == -1)\n buffer[0] = -1;\n }\n\n private byte read() throws IOException\n {\n if (bufferPointer == bytesRead)\n fillBuffer();\n return buffer[bufferPointer++];\n }\n\n public void close() throws IOException\n {\n if (din == null)\n return;\n din.close();\n }\n }\n\n public static void main(String[] args) throws java.lang.Exception\n {\n try\n {\n //FastReader fr = new FastReader();\n Reader fr = new Reader();\n PrintWriter out = new PrintWriter(System.out);\n\n int ele = fr.nextInt();\n\n if (ele == 1) out.println(0);\n else out.println(1);\n\n out.flush();\n out.close();\n }\n\n catch(Exception e){e.printStackTrace();}\n finally{}\n }\n}", "public class Main {\n\n static class FastReader\n {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader()\n {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next()\n {\n while(st==null || !st.hasMoreElements())\n {\n try\n {\n st = new StringTokenizer(br.readLine());\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt()\n {\n return Integer.parseInt(next());\n }\n\n String nextLine()\n {\n String str = \"\";\n\n try\n {\n str = br.readLine();\n }\n catch(IOException e)\n {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n static class Reader\n {\n final private int BUFFER_SIZE = 1 << 16;\n private DataInputStream din;\n private byte[] buffer;\n private int bufferPointer, bytesRead;\n\n public Reader()\n {\n din = new DataInputStream(System.in);\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public Reader(String file_name) throws IOException\n {\n din = new DataInputStream(new FileInputStream(file_name));\n buffer = new byte[BUFFER_SIZE];\n bufferPointer = bytesRead = 0;\n }\n\n public String readLine() throws IOException\n {\n byte[] buf = new byte[64]; // line length\n int cnt = 0, c;\n while ((c = read()) != -1)\n {\n if (c == '\\n')\n break;\n buf[cnt++] = (byte) c;\n }\n return new String(buf, 0, cnt);\n }\n\n public int nextInt() throws IOException\n {\n int ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do\n {\n ret = ret * 10 + c - '0';\n } while ((c = read()) >= '0' && c <= '9');\n\n if (neg)\n return -ret;\n return ret;\n }\n\n public long nextLong() throws IOException\n {\n long ret = 0;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n if (neg)\n return -ret;\n return ret;\n }\n\n public double nextDouble() throws IOException\n {\n double ret = 0, div = 1;\n byte c = read();\n while (c <= ' ')\n c = read();\n boolean neg = (c == '-');\n if (neg)\n c = read();\n\n do {\n ret = ret * 10 + c - '0';\n }\n while ((c = read()) >= '0' && c <= '9');\n\n if (c == '.')\n {\n while ((c = read()) >= '0' && c <= '9')\n {\n ret += (c - '0') / (div *= 10);\n }\n }\n\n if (neg)\n return -ret;\n return ret;\n }\n\n private void fillBuffer() throws IOException\n {\n bytesRead = din.read(buffer, bufferPointer = 0, BUFFER_SIZE);\n if (bytesRead == -1)\n buffer[0] = -1;\n }\n\n private byte read() throws IOException\n {\n if (bufferPointer == bytesRead)\n fillBuffer();\n return buffer[bufferPointer++];\n }\n\n public void close() throws IOException\n {\n if (din == null)\n return;\n din.close();\n }\n }\n\n public static void main(String[] args) throws java.lang.Exception\n {\n try\n {\n //FastReader fr = new FastReader();\n Reader fr = new Reader();\n PrintWriter out = new PrintWriter(System.out);\n\n int ele = fr.nextInt();\n\n if (ele == 1) out.println(0);\n else out.println(1);\n\n out.flush();\n out.close();\n }\n\n catch(Exception e){e.printStackTrace();}\n finally{}\n }\n}", "Main" ]
import java.util.*; import java.io.*; public class Main { static class FastReader { BufferedReader br; StringTokenizer st; public FastReader() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while(st==null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch(IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch(IOException e) { e.printStackTrace(); } return str; } } static class Reader { final private int BUFFER_SIZE = 1 << 16; private DataInputStream din; private byte[] buffer; private int bufferPointer, bytesRead; public Reader() { din = new DataInputStream(System.in); buffer = new byte[BUFFER_SIZE]; bufferPointer = bytesRead = 0; } public Reader(String file_name) throws IOException { din = new DataInputStream(new FileInputStream(file_name)); buffer = new byte[BUFFER_SIZE]; bufferPointer = bytesRead = 0; } public String readLine() throws IOException { byte[] buf = new byte[64]; // line length int cnt = 0, c; while ((c = read()) != -1) { if (c == '\n') break; buf[cnt++] = (byte) c; } return new String(buf, 0, cnt); } public int nextInt() throws IOException { int ret = 0; byte c = read(); while (c <= ' ') c = read(); boolean neg = (c == '-'); if (neg) c = read(); do { ret = ret * 10 + c - '0'; } while ((c = read()) >= '0' && c <= '9'); if (neg) return -ret; return ret; } public long nextLong() throws IOException { long ret = 0; byte c = read(); while (c <= ' ') c = read(); boolean neg = (c == '-'); if (neg) c = read(); do { ret = ret * 10 + c - '0'; } while ((c = read()) >= '0' && c <= '9'); if (neg) return -ret; return ret; } public double nextDouble() throws IOException { double ret = 0, div = 1; byte c = read(); while (c <= ' ') c = read(); boolean neg = (c == '-'); if (neg) c = read(); do { ret = ret * 10 + c - '0'; } while ((c = read()) >= '0' && c <= '9'); if (c == '.') { while ((c = read()) >= '0' && c <= '9') { ret += (c - '0') / (div *= 10); } } if (neg) return -ret; return ret; } private void fillBuffer() throws IOException { bytesRead = din.read(buffer, bufferPointer = 0, BUFFER_SIZE); if (bytesRead == -1) buffer[0] = -1; } private byte read() throws IOException { if (bufferPointer == bytesRead) fillBuffer(); return buffer[bufferPointer++]; } public void close() throws IOException { if (din == null) return; din.close(); } } public static void main(String[] args) throws java.lang.Exception { try { //FastReader fr = new FastReader(); Reader fr = new Reader(); PrintWriter out = new PrintWriter(System.out); int ele = fr.nextInt(); if (ele == 1) out.println(0); else out.println(1); out.flush(); out.close(); } catch(Exception e){e.printStackTrace();} finally{} } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 18, 13, 13, 41, 13, 18, 13, 13, 41, 13, 20, 41, 13, 20, 41, 13, 20, 4, 18, 13, 17, 13, 13, 4, 18, 13, 23, 13, 6, 13, 12, 13, 30, 41, 13, 4, 18, 13, 4, 18, 13, 2, 17, 13, 23, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 23, 13, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 29, 17, 30, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 29, 17, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 22, 23 ], [ 22, 24 ], [ 0, 25 ], [ 25, 26 ], [ 25, 27 ], [ 0, 28 ], [ 148, 29 ], [ 148, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 32, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 32, 43 ], [ 43, 44 ], [ 43, 45 ], [ 32, 46 ], [ 46, 47 ], [ 46, 48 ], [ 32, 49 ], [ 49, 50 ], [ 49, 51 ], [ 32, 52 ], [ 52, 53 ], [ 53, 54 ], [ 52, 55 ], [ 52, 56 ], [ 52, 57 ], [ 32, 58 ], [ 58, 59 ], [ 59, 60 ], [ 30, 61 ], [ 61, 62 ], [ 148, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 70, 71 ], [ 71, 72 ], [ 67, 73 ], [ 73, 74 ], [ 74, 75 ], [ 73, 76 ], [ 76, 77 ], [ 76, 78 ], [ 65, 79 ], [ 79, 80 ], [ 65, 81 ], [ 81, 82 ], [ 65, 83 ], [ 83, 84 ], [ 148, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 85, 89 ], [ 89, 90 ], [ 85, 91 ], [ 91, 92 ], [ 91, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 91, 97 ], [ 97, 98 ], [ 85, 99 ], [ 99, 100 ], [ 99, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 103, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 102, 111 ], [ 111, 112 ], [ 112, 113 ], [ 113, 114 ], [ 113, 115 ], [ 115, 116 ], [ 116, 117 ], [ 112, 118 ], [ 118, 119 ], [ 119, 120 ], [ 119, 121 ], [ 121, 122 ], [ 122, 123 ], [ 118, 124 ], [ 124, 125 ], [ 125, 126 ], [ 125, 127 ], [ 124, 128 ], [ 128, 129 ], [ 129, 130 ], [ 118, 131 ], [ 131, 132 ], [ 131, 133 ], [ 101, 134 ], [ 134, 135 ], [ 135, 136 ], [ 136, 137 ], [ 85, 138 ], [ 138, 139 ], [ 138, 140 ], [ 140, 141 ], [ 141, 142 ], [ 142, 143 ], [ 143, 144 ], [ 142, 145 ], [ 145, 146 ], [ 0, 147 ], [ 147, 148 ], [ 147, 149 ] ]
[ "import java.io.OutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.StringTokenizer;\nimport java.io.IOException;\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.io.InputStream;\n\n/**\n * Built using CHelper plug-in\n * Actual solution is at the top\n */\npublic class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n MyScanner in = new MyScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n A solver = new A();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class A {\n public void solve(int testNumber, MyScanner in, PrintWriter out) {\n int x = in.Int();\n out.println(1 - x);\n }\n\n }\n\n static class MyScanner {\n private BufferedReader in;\n private StringTokenizer st;\n\n public MyScanner(InputStream stream) {\n in = new BufferedReader(new InputStreamReader(stream));\n }\n\n public String next() {\n while (st == null || !st.hasMoreTokens()) {\n try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }\n }\n return st.nextToken();\n }\n\n public int Int() {\n return Integer.parseInt(next());\n }\n\n }\n}\n", "import java.io.OutputStream;", "OutputStream", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "import java.io.IOException;", "IOException", "java.io", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n MyScanner in = new MyScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n A solver = new A();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class A {\n public void solve(int testNumber, MyScanner in, PrintWriter out) {\n int x = in.Int();\n out.println(1 - x);\n }\n\n }\n\n static class MyScanner {\n private BufferedReader in;\n private StringTokenizer st;\n\n public MyScanner(InputStream stream) {\n in = new BufferedReader(new InputStreamReader(stream));\n }\n\n public String next() {\n while (st == null || !st.hasMoreTokens()) {\n try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }\n }\n return st.nextToken();\n }\n\n public int Int() {\n return Integer.parseInt(next());\n }\n\n }\n}", "Main", "public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n MyScanner in = new MyScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n A solver = new A();\n solver.solve(1, in, out);\n out.close();\n }", "main", "{\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n MyScanner in = new MyScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n A solver = new A();\n solver.solve(1, in, out);\n out.close();\n }", "InputStream inputStream = System.in;", "inputStream", "System.in", "System", "System.in", "OutputStream outputStream = System.out;", "outputStream", "System.out", "System", "System.out", "MyScanner in = new MyScanner(inputStream);", "in", "new MyScanner(inputStream)", "PrintWriter out = new PrintWriter(outputStream);", "out", "new PrintWriter(outputStream)", "A solver = new A();", "solver", "new A()", "solver.solve(1, in, out)", "solver.solve", "solver", "1", "in", "out", "out.close()", "out.close", "out", "String[] args", "args", "static class A {\n public void solve(int testNumber, MyScanner in, PrintWriter out) {\n int x = in.Int();\n out.println(1 - x);\n }\n\n }", "A", "public void solve(int testNumber, MyScanner in, PrintWriter out) {\n int x = in.Int();\n out.println(1 - x);\n }", "solve", "{\n int x = in.Int();\n out.println(1 - x);\n }", "int x = in.Int();", "x", "in.Int()", "in.Int", "in", "out.println(1 - x)", "out.println", "out", "1 - x", "1", "x", "int testNumber", "testNumber", "MyScanner in", "in", "PrintWriter out", "out", "static class MyScanner {\n private BufferedReader in;\n private StringTokenizer st;\n\n public MyScanner(InputStream stream) {\n in = new BufferedReader(new InputStreamReader(stream));\n }\n\n public String next() {\n while (st == null || !st.hasMoreTokens()) {\n try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }\n }\n return st.nextToken();\n }\n\n public int Int() {\n return Integer.parseInt(next());\n }\n\n }", "MyScanner", "private BufferedReader in;", "in", "private StringTokenizer st;", "st", "public MyScanner(InputStream stream) {\n in = new BufferedReader(new InputStreamReader(stream));\n }", "MyScanner", "{\n in = new BufferedReader(new InputStreamReader(stream));\n }", "in = new BufferedReader(new InputStreamReader(stream))", "in", "new BufferedReader(new InputStreamReader(stream))", "InputStream stream", "stream", "public String next() {\n while (st == null || !st.hasMoreTokens()) {\n try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }\n }\n return st.nextToken();\n }", "next", "{\n while (st == null || !st.hasMoreTokens()) {\n try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }\n }\n return st.nextToken();\n }", "while (st == null || !st.hasMoreTokens()) {\n try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }\n }", "st == null || !st.hasMoreTokens()", "st == null", "st", "null", "!st.hasMoreTokens()", "st.hasMoreTokens()", "st.hasMoreTokens", "st", "{\n try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }\n }", "try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }", "catch (IOException e) {\n return null;\n }", "IOException e", "{\n return null;\n }", "return null;", "null", "{\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n }", "String rl = in.readLine();", "rl", "in.readLine()", "in.readLine", "in", "if (rl == null) {\n return null;\n }", "rl == null", "rl", "null", "{\n return null;\n }", "return null;", "null", "st = new StringTokenizer(rl)", "st", "new StringTokenizer(rl)", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "public int Int() {\n return Integer.parseInt(next());\n }", "Int", "{\n return Integer.parseInt(next());\n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n MyScanner in = new MyScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n A solver = new A();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class A {\n public void solve(int testNumber, MyScanner in, PrintWriter out) {\n int x = in.Int();\n out.println(1 - x);\n }\n\n }\n\n static class MyScanner {\n private BufferedReader in;\n private StringTokenizer st;\n\n public MyScanner(InputStream stream) {\n in = new BufferedReader(new InputStreamReader(stream));\n }\n\n public String next() {\n while (st == null || !st.hasMoreTokens()) {\n try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }\n }\n return st.nextToken();\n }\n\n public int Int() {\n return Integer.parseInt(next());\n }\n\n }\n}", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n MyScanner in = new MyScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n A solver = new A();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class A {\n public void solve(int testNumber, MyScanner in, PrintWriter out) {\n int x = in.Int();\n out.println(1 - x);\n }\n\n }\n\n static class MyScanner {\n private BufferedReader in;\n private StringTokenizer st;\n\n public MyScanner(InputStream stream) {\n in = new BufferedReader(new InputStreamReader(stream));\n }\n\n public String next() {\n while (st == null || !st.hasMoreTokens()) {\n try {\n String rl = in.readLine();\n if (rl == null) {\n return null;\n }\n st = new StringTokenizer(rl);\n } catch (IOException e) {\n return null;\n }\n }\n return st.nextToken();\n }\n\n public int Int() {\n return Integer.parseInt(next());\n }\n\n }\n}", "Main" ]
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.StringTokenizer; import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; MyScanner in = new MyScanner(inputStream); PrintWriter out = new PrintWriter(outputStream); A solver = new A(); solver.solve(1, in, out); out.close(); } static class A { public void solve(int testNumber, MyScanner in, PrintWriter out) { int x = in.Int(); out.println(1 - x); } } static class MyScanner { private BufferedReader in; private StringTokenizer st; public MyScanner(InputStream stream) { in = new BufferedReader(new InputStreamReader(stream)); } public String next() { while (st == null || !st.hasMoreTokens()) { try { String rl = in.readLine(); if (rl == null) { return null; } st = new StringTokenizer(rl); } catch (IOException e) { return null; } } return st.nextToken(); } public int Int() { return Integer.parseInt(next()); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 41, 13, 2, 17, 17, 12, 13, 30, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 13, 17, 12, 13, 30, 4, 18, 20, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 48, 14 ], [ 48, 15 ], [ 15, 16 ], [ 15, 17 ], [ 48, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 20, 22 ], [ 48, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 29, 30 ], [ 25, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 31, 36 ], [ 36, 37 ], [ 36, 38 ], [ 48, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 39, 45 ], [ 45, 46 ], [ 0, 47 ], [ 47, 48 ], [ 47, 49 ] ]
[ "//package src.com.jetman.atcoder;\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.Scanner;\n\n/**\n * @description:\n * @author: Jetman\n * @create: 2020-08-29 14:39\n **/\npublic class Main {\n\n Scanner sc = new Scanner(System.in);\n\n long MOD = 1000000000 + 7;\n\n\n private void slove() {\n\n int h = sc.nextInt();\n System.out.println(h^1);\n\n\n\n\n\n }\n\n public static void main(String[] args) {\n new Main().slove();\n }\n}", "import java.util.ArrayList;", "ArrayList", "java.util", "import java.util.Arrays;", "Arrays", "java.util", "import java.util.List;", "List", "java.util", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n Scanner sc = new Scanner(System.in);\n\n long MOD = 1000000000 + 7;\n\n\n private void slove() {\n\n int h = sc.nextInt();\n System.out.println(h^1);\n\n\n\n\n\n }\n\n public static void main(String[] args) {\n new Main().slove();\n }\n}", "Main", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "long MOD = 1000000000 + 7;", "MOD", "1000000000 + 7", "1000000000", "7", "private void slove() {\n\n int h = sc.nextInt();\n System.out.println(h^1);\n\n\n\n\n\n }", "slove", "{\n\n int h = sc.nextInt();\n System.out.println(h^1);\n\n\n\n\n\n }", "int h = sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println(h^1)", "System.out.println", "System.out", "System", "System.out", "h^1", "h", "1", "public static void main(String[] args) {\n new Main().slove();\n }", "main", "{\n new Main().slove();\n }", "new Main().slove()", "new Main().slove", "new Main()", "String[] args", "args", "public class Main {\n\n Scanner sc = new Scanner(System.in);\n\n long MOD = 1000000000 + 7;\n\n\n private void slove() {\n\n int h = sc.nextInt();\n System.out.println(h^1);\n\n\n\n\n\n }\n\n public static void main(String[] args) {\n new Main().slove();\n }\n}", "public class Main {\n\n Scanner sc = new Scanner(System.in);\n\n long MOD = 1000000000 + 7;\n\n\n private void slove() {\n\n int h = sc.nextInt();\n System.out.println(h^1);\n\n\n\n\n\n }\n\n public static void main(String[] args) {\n new Main().slove();\n }\n}", "Main" ]
//package src.com.jetman.atcoder; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.Scanner; /** * @description: * @author: Jetman * @create: 2020-08-29 14:39 **/ public class Main { Scanner sc = new Scanner(System.in); long MOD = 1000000000 + 7; private void slove() { int h = sc.nextInt(); System.out.println(h^1); } public static void main(String[] args) { new Main().slove(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 4, 18, 13, 2, 13, 17, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 34, 5 ], [ 34, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 17, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 25, 27 ], [ 8, 28 ], [ 28, 29 ], [ 29, 30 ], [ 6, 31 ], [ 31, 32 ], [ 0, 33 ], [ 33, 34 ], [ 33, 35 ] ]
[ "import java.util.*;\n\npublic class Main{\npublic static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(String.valueOf(x ^ 1));\n scan.close();\n}\n}", "import java.util.*;", "util.*", "java", "public class Main{\npublic static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(String.valueOf(x ^ 1));\n scan.close();\n}\n}", "Main", "public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(String.valueOf(x ^ 1));\n scan.close();\n}", "main", "{\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(String.valueOf(x ^ 1));\n scan.close();\n}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "System.out.println(String.valueOf(x ^ 1))", "System.out.println", "System.out", "System", "System.out", "String.valueOf(x ^ 1)", "String.valueOf", "String", "x ^ 1", "x", "1", "scan.close()", "scan.close", "scan", "String[] args", "args", "public class Main{\npublic static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(String.valueOf(x ^ 1));\n scan.close();\n}\n}", "public class Main{\npublic static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int x = scan.nextInt();\n System.out.println(String.valueOf(x ^ 1));\n scan.close();\n}\n}", "Main" ]
import java.util.*; public class Main{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int x = scan.nextInt(); System.out.println(String.valueOf(x ^ 1)); scan.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 13, 17, 17, 17, 23, 13, 6, 13, 41, 13, 20, 41, 13, 20, 12, 13, 30, 42, 40, 4, 18, 13, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 150, 17 ], [ 150, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 20, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 34, 38 ], [ 34, 39 ], [ 18, 40 ], [ 40, 41 ], [ 150, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 44, 46 ], [ 42, 47 ], [ 47, 48 ], [ 47, 49 ], [ 42, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 56, 57 ], [ 53, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 58, 65 ], [ 65, 66 ], [ 66, 67 ], [ 66, 68 ], [ 52, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 42, 73 ], [ 73, 74 ], [ 73, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 77, 80 ], [ 80, 81 ], [ 42, 82 ], [ 82, 83 ], [ 82, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 84, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 89, 94 ], [ 94, 95 ], [ 94, 96 ], [ 89, 97 ], [ 97, 98 ], [ 98, 99 ], [ 89, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 102, 104 ], [ 101, 105 ], [ 105, 106 ], [ 84, 107 ], [ 107, 108 ], [ 82, 109 ], [ 109, 110 ], [ 42, 111 ], [ 111, 112 ], [ 111, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 118 ], [ 118, 119 ], [ 119, 120 ], [ 120, 121 ], [ 120, 122 ], [ 118, 123 ], [ 123, 124 ], [ 123, 125 ], [ 118, 126 ], [ 126, 127 ], [ 127, 128 ], [ 118, 129 ], [ 129, 130 ], [ 130, 131 ], [ 131, 132 ], [ 131, 133 ], [ 130, 134 ], [ 134, 135 ], [ 113, 136 ], [ 136, 137 ], [ 111, 138 ], [ 138, 139 ], [ 42, 140 ], [ 140, 141 ], [ 140, 142 ], [ 142, 143 ], [ 143, 144 ], [ 144, 145 ], [ 145, 146 ], [ 144, 147 ], [ 147, 148 ], [ 0, 149 ], [ 149, 150 ], [ 149, 151 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.StringJoiner;\nimport java.util.StringTokenizer;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner();\n\t\t\n\t\tint x=sc.nextInt();\n\t\tSystem.out.println(x==0?1:0);\n\t\t\n\t}\n\n\tstatic class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] readArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong[] readLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.util.StringJoiner;", "StringJoiner", "java.util", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner();\n\t\t\n\t\tint x=sc.nextInt();\n\t\tSystem.out.println(x==0?1:0);\n\t\t\n\t}\n\n\tstatic class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] readArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong[] readLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner();\n\t\t\n\t\tint x=sc.nextInt();\n\t\tSystem.out.println(x==0?1:0);\n\t\t\n\t}", "main", "{\n\t\tFastScanner sc = new FastScanner();\n\t\t\n\t\tint x=sc.nextInt();\n\t\tSystem.out.println(x==0?1:0);\n\t\t\n\t}", "FastScanner sc = new FastScanner();", "sc", "new FastScanner()", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println(x==0?1:0)", "System.out.println", "System.out", "System", "System.out", "x==0?1:0", "x==0", "x", "0", "1", "0", "String[] args", "args", "static class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] readArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong[] readLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}", "FastScanner", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "StringTokenizer st = new StringTokenizer(\"\");", "st", "new StringTokenizer(\"\")", "String next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}", "next", "{\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}", "while (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "!st.hasMoreTokens()", "st.hasMoreTokens()", "st.hasMoreTokens", "st", "try {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "IOException e", "{\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}", "e.printStackTrace()", "e.printStackTrace", "e", "{\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t}", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "int nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "nextInt", "{\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "int[] readArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}", "readArray", "{\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}", "int[] a = new int[n];", "a", "new int[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "a[i] = nextInt();", "a[i] = nextInt()", "a[i]", "a", "i", "nextInt()", "nextInt", "return a;", "a", "int n", "n", "long[] readLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}", "readLongArray", "{\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}", "long[] a = new long[n];", "a", "new long[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "a[i] = nextLong();", "a[i] = nextLong()", "a[i]", "a", "i", "nextLong()", "nextLong", "return a;", "a", "int n", "n", "long nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}", "nextLong", "{\n\t\t\treturn Long.parseLong(next());\n\t\t}", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner();\n\t\t\n\t\tint x=sc.nextInt();\n\t\tSystem.out.println(x==0?1:0);\n\t\t\n\t}\n\n\tstatic class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] readArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong[] readLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner();\n\t\t\n\t\tint x=sc.nextInt();\n\t\tSystem.out.println(x==0?1:0);\n\t\t\n\t}\n\n\tstatic class FastScanner {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringTokenizer st = new StringTokenizer(\"\");\n\n\t\tString next() {\n\t\t\twhile (!st.hasMoreTokens())\n\t\t\t\ttry {\n\t\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\te.printStackTrace();\n\t\t\t\t}\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tint nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tint[] readArray(int n) {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong[] readLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tlong nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringJoiner; import java.util.StringTokenizer; public class Main { public static void main(String[] args) { FastScanner sc = new FastScanner(); int x=sc.nextInt(); System.out.println(x==0?1:0); } static class FastScanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); String next() { while (!st.hasMoreTokens()) try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } int[] readArray(int n) { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = nextInt(); return a; } long[] readLongArray(int n) { long[] a = new long[n]; for (int i = 0; i < n; i++) a[i] = nextLong(); return a; } long nextLong() { return Long.parseLong(next()); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 41, 13, 20, 41, 13, 41, 13, 17, 12, 13, 30, 41, 13, 17, 41, 13, 20, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 41, 13, 4, 13, 0, 13, 2, 17, 13, 4, 13, 2, 13, 17, 4, 18, 18, 13, 13, 4, 18, 13, 23, 13, 12, 13, 30, 41, 13, 18, 13, 13, 41, 13, 20, 11, 1, 41, 13, 17, 2, 13, 18, 13, 13, 1, 40, 13, 30, 30, 4, 18, 13, 18, 13, 13, 4, 18, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 18, 13, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 17, 42, 2, 13, 17, 30, 14, 2, 2, 13, 17, 17, 30, 0, 13, 2, 13, 13, 40, 13, 0, 13, 2, 13, 13, 0, 13, 17, 29, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 30, 29, 13, 29, 4, 13, 2, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 29, 2, 13, 2, 13, 4, 13, 13, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 4, 18, 13, 29, 4, 18, 13, 13, 12, 13, 30, 4, 18, 18, 13, 13, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 20, 17, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 23, 13, 12, 13, 30, 14, 2, 13, 40, 17, 37, 20, 14, 2, 13, 13, 30, 0, 13, 17, 38, 5, 13, 30, 37, 20, 30, 0, 13, 4, 18, 13, 13, 14, 2, 13, 17, 29, 40, 17, 29, 18, 13, 40, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 40, 17, 0, 13, 4, 13, 41, 13, 17, 42, 40, 4, 13, 13, 30, 14, 2, 2, 13, 17, 2, 13, 17, 37, 20, 0, 13, 17, 0, 13, 2, 13, 17, 0, 13, 4, 13, 29, 2, 13, 13, 12, 13, 30, 41, 13, 4, 13, 42, 4, 13, 13, 0, 13, 4, 13, 41, 13, 20, 42, 40, 4, 13, 13, 30, 4, 18, 13, 13, 0, 13, 4, 13, 29, 4, 18, 13, 12, 13, 30, 14, 2, 13, 17, 29, 4, 18, 13, 13, 29, 2, 2, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 23, 13, 12, 13, 30, 29, 4, 13, 6, 13, 12, 13, 23, 13, 6, 13, 41, 13, 12, 13, 30, 0, 13, 20, 23, 13, 12, 13, 30, 0, 18, 36, 13, 20, 23, 13, 12, 13, 30, 11, 1, 41, 13, 17, 2, 13, 18, 13, 13, 1, 40, 13, 30, 30, 14, 2, 13, 17, 4, 18, 13, 17, 4, 18, 13, 18, 13, 13, 23, 13, 12, 13, 30, 4, 13, 13, 4, 18, 13, 23, 13, 12, 13, 30, 4, 18, 13, 12, 13, 30, 4, 18, 13, 6, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 18, 13, 29, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 603, 17 ], [ 603, 18 ], [ 18, 19 ], [ 18, 20 ], [ 603, 21 ], [ 21, 22 ], [ 21, 23 ], [ 603, 24 ], [ 24, 25 ], [ 603, 26 ], [ 26, 27 ], [ 26, 28 ], [ 603, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 35, 36 ], [ 35, 37 ], [ 31, 38 ], [ 38, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 38, 43 ], [ 43, 44 ], [ 43, 45 ], [ 38, 46 ], [ 46, 47 ], [ 47, 48 ], [ 38, 49 ], [ 50, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 50, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 57, 59 ], [ 50, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 62, 64 ], [ 31, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 65, 70 ], [ 70, 71 ], [ 71, 72 ], [ 29, 73 ], [ 73, 74 ], [ 603, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 80, 81 ], [ 80, 82 ], [ 77, 83 ], [ 83, 84 ], [ 83, 85 ], [ 77, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 86, 91 ], [ 91, 92 ], [ 91, 93 ], [ 93, 94 ], [ 93, 95 ], [ 86, 96 ], [ 96, 97 ], [ 97, 98 ], [ 86, 99 ], [ 100, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 101, 104 ], [ 104, 105 ], [ 104, 106 ], [ 77, 107 ], [ 107, 108 ], [ 108, 109 ], [ 107, 110 ], [ 77, 111 ], [ 111, 112 ], [ 112, 113 ], [ 113, 114 ], [ 113, 115 ], [ 111, 116 ], [ 116, 117 ], [ 116, 118 ], [ 111, 119 ], [ 119, 120 ], [ 120, 121 ], [ 111, 122 ], [ 123, 123 ], [ 123, 124 ], [ 124, 125 ], [ 125, 126 ], [ 125, 127 ], [ 124, 128 ], [ 128, 129 ], [ 129, 130 ], [ 128, 131 ], [ 77, 132 ], [ 132, 133 ], [ 75, 134 ], [ 134, 135 ], [ 603, 136 ], [ 136, 137 ], [ 136, 138 ], [ 138, 139 ], [ 139, 140 ], [ 139, 141 ], [ 138, 142 ], [ 142, 143 ], [ 143, 144 ], [ 143, 145 ], [ 142, 146 ], [ 146, 147 ], [ 147, 148 ], [ 148, 149 ], [ 149, 150 ], [ 149, 151 ], [ 148, 152 ], [ 147, 153 ], [ 153, 154 ], [ 154, 155 ], [ 154, 156 ], [ 156, 157 ], [ 156, 158 ], [ 153, 159 ], [ 159, 160 ], [ 146, 161 ], [ 161, 162 ], [ 161, 163 ], [ 163, 164 ], [ 163, 165 ], [ 146, 166 ], [ 166, 167 ], [ 166, 168 ], [ 138, 169 ], [ 169, 170 ], [ 136, 171 ], [ 171, 172 ], [ 136, 173 ], [ 173, 174 ], [ 603, 175 ], [ 175, 176 ], [ 175, 177 ], [ 177, 178 ], [ 178, 179 ], [ 179, 180 ], [ 179, 181 ], [ 178, 182 ], [ 182, 183 ], [ 183, 184 ], [ 177, 185 ], [ 185, 186 ], [ 186, 187 ], [ 186, 188 ], [ 188, 189 ], [ 188, 190 ], [ 186, 191 ], [ 175, 192 ], [ 192, 193 ], [ 175, 194 ], [ 194, 195 ], [ 603, 196 ], [ 196, 197 ], [ 196, 198 ], [ 198, 199 ], [ 199, 200 ], [ 200, 201 ], [ 200, 202 ], [ 202, 203 ], [ 202, 204 ], [ 204, 205 ], [ 204, 206 ], [ 204, 207 ], [ 196, 208 ], [ 208, 209 ], [ 196, 210 ], [ 210, 211 ], [ 603, 212 ], [ 212, 213 ], [ 212, 214 ], [ 214, 215 ], [ 215, 216 ], [ 215, 217 ], [ 217, 218 ], [ 218, 219 ], [ 214, 220 ], [ 220, 221 ], [ 221, 222 ], [ 222, 223 ], [ 221, 224 ], [ 603, 225 ], [ 225, 226 ], [ 225, 227 ], [ 227, 228 ], [ 228, 229 ], [ 229, 230 ], [ 230, 231 ], [ 230, 232 ], [ 228, 233 ], [ 225, 234 ], [ 234, 235 ], [ 603, 236 ], [ 236, 237 ], [ 236, 238 ], [ 238, 239 ], [ 239, 240 ], [ 240, 241 ], [ 241, 242 ], [ 603, 243 ], [ 243, 244 ], [ 243, 245 ], [ 245, 246 ], [ 246, 247 ], [ 247, 248 ], [ 248, 249 ], [ 603, 250 ], [ 250, 251 ], [ 250, 252 ], [ 252, 253 ], [ 250, 254 ], [ 254, 255 ], [ 250, 256 ], [ 256, 257 ], [ 256, 258 ], [ 258, 259 ], [ 259, 260 ], [ 260, 261 ], [ 260, 262 ], [ 259, 263 ], [ 258, 264 ], [ 264, 265 ], [ 265, 266 ], [ 265, 267 ], [ 264, 268 ], [ 256, 269 ], [ 269, 270 ], [ 256, 271 ], [ 271, 272 ], [ 0, 273 ], [ 273, 274 ], [ 273, 275 ], [ 275, 276 ], [ 273, 277 ], [ 277, 278 ], [ 277, 279 ], [ 273, 281 ], [ 281, 282 ], [ 273, 283 ], [ 283, 284 ], [ 273, 285 ], [ 285, 286 ], [ 273, 287 ], [ 287, 288 ], [ 287, 289 ], [ 289, 290 ], [ 290, 291 ], [ 291, 292 ], [ 291, 293 ], [ 290, 294 ], [ 287, 295 ], [ 295, 296 ], [ 273, 297 ], [ 297, 298 ], [ 297, 299 ], [ 299, 300 ], [ 300, 301 ], [ 301, 302 ], [ 301, 303 ], [ 303, 304 ], [ 300, 305 ], [ 305, 306 ], [ 299, 307 ], [ 307, 308 ], [ 308, 309 ], [ 308, 310 ], [ 307, 311 ], [ 311, 312 ], [ 312, 313 ], [ 312, 314 ], [ 311, 315 ], [ 315, 316 ], [ 316, 317 ], [ 316, 318 ], [ 318, 319 ], [ 319, 320 ], [ 315, 321 ], [ 321, 322 ], [ 322, 323 ], [ 322, 324 ], [ 324, 325 ], [ 325, 326 ], [ 324, 327 ], [ 311, 328 ], [ 328, 329 ], [ 329, 330 ], [ 329, 331 ], [ 328, 332 ], [ 332, 333 ], [ 333, 334 ], [ 299, 335 ], [ 335, 336 ], [ 336, 337 ], [ 336, 338 ], [ 338, 339 ], [ 273, 340 ], [ 340, 341 ], [ 340, 342 ], [ 342, 343 ], [ 343, 344 ], [ 343, 345 ], [ 345, 346 ], [ 342, 347 ], [ 347, 348 ], [ 348, 349 ], [ 348, 350 ], [ 347, 351 ], [ 351, 352 ], [ 351, 353 ], [ 353, 354 ], [ 342, 355 ], [ 355, 356 ], [ 355, 357 ], [ 342, 358 ], [ 358, 359 ], [ 359, 360 ], [ 359, 361 ], [ 358, 362 ], [ 362, 363 ], [ 363, 364 ], [ 363, 365 ], [ 365, 366 ], [ 362, 367 ], [ 367, 368 ], [ 367, 369 ], [ 369, 370 ], [ 342, 371 ], [ 371, 372 ], [ 371, 373 ], [ 342, 374 ], [ 374, 375 ], [ 375, 376 ], [ 376, 377 ], [ 376, 378 ], [ 374, 379 ], [ 379, 380 ], [ 380, 381 ], [ 381, 382 ], [ 382, 383 ], [ 382, 384 ], [ 381, 385 ], [ 385, 386 ], [ 385, 387 ], [ 380, 388 ], [ 388, 389 ], [ 379, 390 ], [ 390, 391 ], [ 390, 392 ], [ 379, 393 ], [ 393, 394 ], [ 393, 395 ], [ 395, 396 ], [ 395, 397 ], [ 379, 398 ], [ 398, 399 ], [ 398, 400 ], [ 400, 401 ], [ 342, 402 ], [ 402, 403 ], [ 403, 404 ], [ 403, 405 ], [ 273, 406 ], [ 406, 407 ], [ 406, 408 ], [ 408, 409 ], [ 409, 410 ], [ 409, 411 ], [ 411, 412 ], [ 408, 413 ], [ 413, 414 ], [ 414, 415 ], [ 414, 416 ], [ 413, 417 ], [ 417, 418 ], [ 417, 419 ], [ 419, 420 ], [ 408, 421 ], [ 421, 422 ], [ 421, 423 ], [ 408, 424 ], [ 424, 425 ], [ 425, 426 ], [ 426, 427 ], [ 426, 428 ], [ 424, 429 ], [ 429, 430 ], [ 430, 431 ], [ 431, 432 ], [ 430, 433 ], [ 429, 434 ], [ 434, 435 ], [ 434, 436 ], [ 436, 437 ], [ 408, 438 ], [ 438, 439 ], [ 439, 440 ], [ 440, 441 ], [ 273, 442 ], [ 442, 443 ], [ 442, 444 ], [ 444, 445 ], [ 445, 446 ], [ 446, 447 ], [ 446, 448 ], [ 445, 449 ], [ 449, 450 ], [ 450, 451 ], [ 451, 452 ], [ 450, 453 ], [ 444, 454 ], [ 454, 455 ], [ 458, 456 ], [ 468, 457 ], [ 465, 458 ], [ 458, 459 ], [ 459, 460 ], [ 459, 461 ], [ 458, 462 ], [ 462, 463 ], [ 462, 464 ], [ 465, 465 ], [ 465, 466 ], [ 465, 467 ], [ 468, 468 ], [ 468, 469 ], [ 468, 470 ], [ 458, 471 ], [ 471, 472 ], [ 471, 473 ], [ 473, 474 ], [ 442, 475 ], [ 475, 476 ], [ 273, 477 ], [ 477, 478 ], [ 477, 479 ], [ 479, 480 ], [ 480, 481 ], [ 481, 482 ], [ 273, 483 ], [ 483, 484 ], [ 483, 485 ], [ 485, 486 ], [ 485, 487 ], [ 487, 488 ], [ 0, 489 ], [ 489, 490 ], [ 489, 491 ], [ 491, 492 ], [ 489, 493 ], [ 493, 494 ], [ 493, 495 ], [ 495, 496 ], [ 496, 497 ], [ 496, 498 ], [ 493, 499 ], [ 499, 500 ], [ 489, 501 ], [ 501, 502 ], [ 501, 503 ], [ 503, 504 ], [ 504, 505 ], [ 505, 506 ], [ 505, 507 ], [ 504, 508 ], [ 501, 509 ], [ 509, 510 ], [ 489, 511 ], [ 511, 512 ], [ 511, 513 ], [ 513, 514 ], [ 514, 515 ], [ 515, 516 ], [ 516, 517 ], [ 516, 518 ], [ 514, 519 ], [ 519, 520 ], [ 519, 521 ], [ 521, 522 ], [ 521, 523 ], [ 514, 524 ], [ 524, 525 ], [ 525, 526 ], [ 514, 527 ], [ 528, 528 ], [ 528, 529 ], [ 529, 530 ], [ 530, 531 ], [ 530, 532 ], [ 529, 533 ], [ 533, 534 ], [ 534, 535 ], [ 533, 536 ], [ 528, 537 ], [ 537, 538 ], [ 538, 539 ], [ 537, 540 ], [ 540, 541 ], [ 540, 542 ], [ 511, 543 ], [ 543, 544 ], [ 489, 545 ], [ 545, 546 ], [ 545, 547 ], [ 547, 548 ], [ 548, 549 ], [ 548, 550 ], [ 547, 551 ], [ 551, 552 ], [ 552, 553 ], [ 545, 554 ], [ 554, 555 ], [ 489, 556 ], [ 556, 557 ], [ 556, 558 ], [ 558, 559 ], [ 559, 560 ], [ 560, 561 ], [ 489, 562 ], [ 562, 563 ], [ 562, 564 ], [ 564, 565 ], [ 565, 566 ], [ 566, 567 ], [ 0, 568 ], [ 568, 569 ], [ 568, 570 ], [ 570, 571 ], [ 570, 572 ], [ 572, 573 ], [ 573, 574 ], [ 573, 575 ], [ 572, 577 ], [ 577, 578 ], [ 578, 579 ], [ 579, 580 ], [ 579, 581 ], [ 577, 582 ], [ 582, 583 ], [ 582, 584 ], [ 577, 585 ], [ 585, 586 ], [ 586, 587 ], [ 577, 588 ], [ 588, 589 ], [ 589, 590 ], [ 590, 591 ], [ 590, 592 ], [ 589, 593 ], [ 593, 594 ], [ 594, 595 ], [ 572, 596 ], [ 596, 597 ], [ 570, 598 ], [ 598, 599 ], [ 570, 600 ], [ 600, 601 ], [ 0, 602 ], [ 602, 603 ], [ 602, 604 ] ]
[ "import java.util.*;\t\t\nimport java.util.function.Function;\nimport java.util.stream.Collectors;\nimport java.io.*;\nimport java.math.*;\npublic class Main{\n\tstatic public void main(String args[])throws IOException{\n\t\tint tt=1;\n\t\tStringBuilder sb=new StringBuilder();\n\t\tfor(int ttt=1;ttt<=tt;ttt++){\n\t\t\tint x=i();\n\t\t\tx=1-x;\n\t\t\tpln(x+\"\");\n\t\t}\n\t\tSystem.out.print(sb.toString());\n\t}\n\tstatic InputReader in=new InputReader(System.in);\n\tstatic OutputWriter out=new OutputWriter(System.out);\n\tstatic ArrayList<ArrayList<Integer>> graph;\n\tstatic int mod=1000000007;\n\tstatic class Pair{\n\t\tint x;\n\t\tint z;\n\t\tPair(int x,int z){\n\t\t\tthis.x=x;\n\t\t\tthis.z=z;\n\t\t}\n\t\t/*@Override\n\t\tpublic int hashCode() \n\t\t{ \n\t\t\tfinal int temp = 14; \n\t\t\tint ans = 1; \n\t\t\tans =x*31+y*13; \n\t\t\treturn (int)ans;\n\t\t}\n @Override\n public boolean equals(Object o) \n { \n if (this == o) { \n return true; \n } /\n if (o == null) { \n return false; \n } \n if (this.getClass() != o.getClass()) { \n return false; \n } \n Pair other = (Pair)o; \n if (this.x != other.x || this.y!=other.y) { \n return false; \n } \n return true; \n }*/\n\t}\n\tpublic static long[] sort(long[] a){\n\t\tint n=a.length;\n\t\tArrayList<Long> ar=new ArrayList<>();\n\t\tfor(int i=0;i<a.length;i++){\n\t\t\tar.add(a[i]);\n\t\t}\n\t\tCollections.sort(ar);\n\t\tfor(int i=0;i<n;i++){\n\t\t\ta[i]=ar.get(i);\n\t\t}\n\t\treturn a;\n\t}\n\tpublic static long pow(long a, long b){\n long result=1;\n while(b>0){\n if (b % 2 != 0){\n result=(result*a);\n b--;\n } \n a=(a*a);\n b /= 2;\n } \n return result;\n }\n\tpublic static int gcd(int a, int b){\n if (a == 0){\n return b;\n\t\t}\n return gcd(b%a, a);\n }\n\tpublic static int lcm(int a, int b){\n\t\treturn a*(b/gcd(a,b));\n\t}\n\tpublic static long l(){\n\t\tString s=in.String();\n\t\treturn Long.parseLong(s);\n\t}\n\tpublic static void pln(String value){\n\t\tSystem.out.println(value);\n\t}\n\tpublic static int i(){\n\t\treturn in.Int();\n\t}\n\tpublic static String s(){\n\t\treturn in.String();\n\t}\n}\nclass InputReader \n{\n\tprivate InputStream stream;\n\tprivate byte[] buf = new byte[1024];\n\tprivate int curChar;\n\tprivate int numChars;\n\tprivate SpaceCharFilter filter;\n\tpublic InputReader(InputStream stream) {\n\t\tthis.stream = stream;\n\t}\n\tpublic int read() {\n\t\tif (numChars== -1)\n\t\t\tthrow new InputMismatchException();\n\t\tif (curChar >= numChars) {\n\t\t\tcurChar = 0;\n\t\t\ttry {\n\t\t\t\tnumChars = stream.read(buf);\n\t\t\t} catch (IOException e) {\n\t\t\t\tthrow new InputMismatchException();\n\t\t\t}\n\t\t\tif (numChars <= 0)\n\t\t\t\treturn -1;\n\t\t}\n\t\treturn buf[curChar++];\n\t}\n\tpublic int Int() {\n\t\tint c = read();\n\t\twhile (isSpaceChar(c))\n\t\t\tc = read();\n\t\tint sgn = 1;\n\t\tif (c == '-') {\n\t\t\tsgn = -1;\n\t\t\tc = read();\n\t\t}\n\t\tint res = 0;\n\t\tdo {\n\t\t\tif (c < '0' || c > '9')\n\t\t\t\tthrow new InputMismatchException();\n\t\t\tres *= 10;\n\t\t\tres += c - '0';\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));\n\t\treturn res * sgn;\n\t}\n\tpublic String String() {\n\t\tint c = read();\n\t\twhile (isSpaceChar(c))\n\t\t\tc = read();\n\t\tStringBuilder res = new StringBuilder();\n\t\tdo {\n\t\t\tres.appendCodePoint(c);\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));\n\t\treturn res.toString();\n\t} \n\tpublic boolean isSpaceChar(int c) {\n\t\tif (filter != null)\n\t\t\treturn filter.isSpaceChar(c);\n\t\treturn c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n\t} \n\tpublic String next() {\n\t\treturn String();\n\t} \n\tpublic interface SpaceCharFilter {\n\t\tpublic boolean isSpaceChar(int ch);\n\t}\n}\nclass OutputWriter {\n\tprivate final PrintWriter writer;\n\tpublic OutputWriter(OutputStream outputStream) {\n\t\twriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));\n\t}\n\tpublic OutputWriter(Writer writer) {\n\t\tthis.writer = new PrintWriter(writer);\n\t}\n\tpublic void print(Object...objects) {\n\t\tfor (int i = 0; i < objects.length; i++) {\n\t\t\tif (i != 0)\n\t\t\t\twriter.print(' ');\n\t\t\twriter.print(objects[i]);\n\t\t}\n\t}\n\tpublic void printLine(Object...objects) {\n\t\tprint(objects);\n\t\twriter.println();\n\t}\n\tpublic void close() {\n\t\twriter.close();\n\t}\n\tpublic void flush() {\n\t\twriter.flush();\n\t}\n }\nclass IOUtils {\n\tpublic static int[] readIntArray(InputReader in, int size) {\n\t\tint[] array = new int[size];\n\t\tfor (int i = 0; i < size; i++)\n\t\t\tarray[i] = in.Int();\n\t\treturn array;\n\t}\n} ", "import java.util.*;", "util.*", "java", "import java.util.function.Function;", "Function", "java.util.function", "import java.util.stream.Collectors;", "Collectors", "java.util.stream", "import java.io.*;", "io.*", "java", "import java.math.*;", "math.*", "java", "public class Main{\n\tstatic public void main(String args[])throws IOException{\n\t\tint tt=1;\n\t\tStringBuilder sb=new StringBuilder();\n\t\tfor(int ttt=1;ttt<=tt;ttt++){\n\t\t\tint x=i();\n\t\t\tx=1-x;\n\t\t\tpln(x+\"\");\n\t\t}\n\t\tSystem.out.print(sb.toString());\n\t}\n\tstatic InputReader in=new InputReader(System.in);\n\tstatic OutputWriter out=new OutputWriter(System.out);\n\tstatic ArrayList<ArrayList<Integer>> graph;\n\tstatic int mod=1000000007;\n\tstatic class Pair{\n\t\tint x;\n\t\tint z;\n\t\tPair(int x,int z){\n\t\t\tthis.x=x;\n\t\t\tthis.z=z;\n\t\t}\n\t\t/*@Override\n\t\tpublic int hashCode() \n\t\t{ \n\t\t\tfinal int temp = 14; \n\t\t\tint ans = 1; \n\t\t\tans =x*31+y*13; \n\t\t\treturn (int)ans;\n\t\t}\n @Override\n public boolean equals(Object o) \n { \n if (this == o) { \n return true; \n } /\n if (o == null) { \n return false; \n } \n if (this.getClass() != o.getClass()) { \n return false; \n } \n Pair other = (Pair)o; \n if (this.x != other.x || this.y!=other.y) { \n return false; \n } \n return true; \n }*/\n\t}\n\tpublic static long[] sort(long[] a){\n\t\tint n=a.length;\n\t\tArrayList<Long> ar=new ArrayList<>();\n\t\tfor(int i=0;i<a.length;i++){\n\t\t\tar.add(a[i]);\n\t\t}\n\t\tCollections.sort(ar);\n\t\tfor(int i=0;i<n;i++){\n\t\t\ta[i]=ar.get(i);\n\t\t}\n\t\treturn a;\n\t}\n\tpublic static long pow(long a, long b){\n long result=1;\n while(b>0){\n if (b % 2 != 0){\n result=(result*a);\n b--;\n } \n a=(a*a);\n b /= 2;\n } \n return result;\n }\n\tpublic static int gcd(int a, int b){\n if (a == 0){\n return b;\n\t\t}\n return gcd(b%a, a);\n }\n\tpublic static int lcm(int a, int b){\n\t\treturn a*(b/gcd(a,b));\n\t}\n\tpublic static long l(){\n\t\tString s=in.String();\n\t\treturn Long.parseLong(s);\n\t}\n\tpublic static void pln(String value){\n\t\tSystem.out.println(value);\n\t}\n\tpublic static int i(){\n\t\treturn in.Int();\n\t}\n\tpublic static String s(){\n\t\treturn in.String();\n\t}\n}", "Main", "static InputReader in=new InputReader(System.in);", "in", "new InputReader(System.in)", "static OutputWriter out=new OutputWriter(System.out);", "out", "new OutputWriter(System.out)", "static ArrayList<ArrayList<Integer>> graph;", "graph", "static int mod=1000000007;", "mod", "1000000007", "static public void main(String args[])throws IOException{\n\t\tint tt=1;\n\t\tStringBuilder sb=new StringBuilder();\n\t\tfor(int ttt=1;ttt<=tt;ttt++){\n\t\t\tint x=i();\n\t\t\tx=1-x;\n\t\t\tpln(x+\"\");\n\t\t}\n\t\tSystem.out.print(sb.toString());\n\t}", "main", "{\n\t\tint tt=1;\n\t\tStringBuilder sb=new StringBuilder();\n\t\tfor(int ttt=1;ttt<=tt;ttt++){\n\t\t\tint x=i();\n\t\t\tx=1-x;\n\t\t\tpln(x+\"\");\n\t\t}\n\t\tSystem.out.print(sb.toString());\n\t}", "int tt=1;", "tt", "1", "StringBuilder sb=new StringBuilder();", "sb", "new StringBuilder()", "for(int ttt=1;ttt<=tt;ttt++){\n\t\t\tint x=i();\n\t\t\tx=1-x;\n\t\t\tpln(x+\"\");\n\t\t}", "int ttt=1;", "int ttt=1;", "ttt", "1", "ttt<=tt", "ttt", "tt", "ttt++", "ttt++", "ttt", "{\n\t\t\tint x=i();\n\t\t\tx=1-x;\n\t\t\tpln(x+\"\");\n\t\t}", "{\n\t\t\tint x=i();\n\t\t\tx=1-x;\n\t\t\tpln(x+\"\");\n\t\t}", "int x=i();", "x", "i()", "i", "x=1-x", "x", "1-x", "1", "x", "pln(x+\"\")", "pln", "x+\"\"", "x", "\"\"", "System.out.print(sb.toString())", "System.out.print", "System.out", "System", "System.out", "sb.toString()", "sb.toString", "sb", "String args[]", "args", "public static long[] sort(long[] a){\n\t\tint n=a.length;\n\t\tArrayList<Long> ar=new ArrayList<>();\n\t\tfor(int i=0;i<a.length;i++){\n\t\t\tar.add(a[i]);\n\t\t}\n\t\tCollections.sort(ar);\n\t\tfor(int i=0;i<n;i++){\n\t\t\ta[i]=ar.get(i);\n\t\t}\n\t\treturn a;\n\t}", "sort", "{\n\t\tint n=a.length;\n\t\tArrayList<Long> ar=new ArrayList<>();\n\t\tfor(int i=0;i<a.length;i++){\n\t\t\tar.add(a[i]);\n\t\t}\n\t\tCollections.sort(ar);\n\t\tfor(int i=0;i<n;i++){\n\t\t\ta[i]=ar.get(i);\n\t\t}\n\t\treturn a;\n\t}", "int n=a.length;", "n", "a.length", "a", "a.length", "ArrayList<Long> ar=new ArrayList<>();", "ar", "new ArrayList<>()", "for(int i=0;i<a.length;i++){\n\t\t\tar.add(a[i]);\n\t\t}", "int i=0;", "int i=0;", "i", "0", "i<a.length", "i", "a.length", "a", "a.length", "i++", "i++", "i", "{\n\t\t\tar.add(a[i]);\n\t\t}", "{\n\t\t\tar.add(a[i]);\n\t\t}", "ar.add(a[i])", "ar.add", "ar", "a[i]", "a", "i", "Collections.sort(ar)", "Collections.sort", "Collections", "ar", "for(int i=0;i<n;i++){\n\t\t\ta[i]=ar.get(i);\n\t\t}", "int i=0;", "int i=0;", "i", "0", "i<n", "i", "n", "i++", "i++", "i", "{\n\t\t\ta[i]=ar.get(i);\n\t\t}", "{\n\t\t\ta[i]=ar.get(i);\n\t\t}", "a[i]=ar.get(i)", "a[i]", "a", "i", "ar.get(i)", "ar.get", "ar", "i", "return a;", "a", "long[] a", "a", "public static long pow(long a, long b){\n long result=1;\n while(b>0){\n if (b % 2 != 0){\n result=(result*a);\n b--;\n } \n a=(a*a);\n b /= 2;\n } \n return result;\n }", "pow", "{\n long result=1;\n while(b>0){\n if (b % 2 != 0){\n result=(result*a);\n b--;\n } \n a=(a*a);\n b /= 2;\n } \n return result;\n }", "long result=1;", "result", "1", "while(b>0){\n if (b % 2 != 0){\n result=(result*a);\n b--;\n } \n a=(a*a);\n b /= 2;\n }", "b>0", "b", "0", "{\n if (b % 2 != 0){\n result=(result*a);\n b--;\n } \n a=(a*a);\n b /= 2;\n }", "if (b % 2 != 0){\n result=(result*a);\n b--;\n }", "b % 2 != 0", "b % 2", "b", "2", "0", "{\n result=(result*a);\n b--;\n }", "result=(result*a)", "result", "(result*a)", "result", "a", "b--", "b", "a=(a*a)", "a", "(a*a)", "a", "a", "b /= 2", "b", "2", "return result;", "result", "long a", "a", "long b", "b", "public static int gcd(int a, int b){\n if (a == 0){\n return b;\n\t\t}\n return gcd(b%a, a);\n }", "gcd", "{\n if (a == 0){\n return b;\n\t\t}\n return gcd(b%a, a);\n }", "if (a == 0){\n return b;\n\t\t}", "a == 0", "a", "0", "{\n return b;\n\t\t}", "return b;", "b", "return gcd(b%a, a);", "gcd(b%a, a)", "gcd", "b%a", "b", "a", "a", "int a", "a", "int b", "b", "public static int lcm(int a, int b){\n\t\treturn a*(b/gcd(a,b));\n\t}", "lcm", "{\n\t\treturn a*(b/gcd(a,b));\n\t}", "return a*(b/gcd(a,b));", "a*(b/gcd(a,b))", "a", "(b/gcd(a,b))", "b", "gcd(a,b)", "gcd", "a", "b", "int a", "a", "int b", "b", "public static long l(){\n\t\tString s=in.String();\n\t\treturn Long.parseLong(s);\n\t}", "l", "{\n\t\tString s=in.String();\n\t\treturn Long.parseLong(s);\n\t}", "String s=in.String();", "s", "in.String()", "in.String", "in", "return Long.parseLong(s);", "Long.parseLong(s)", "Long.parseLong", "Long", "s", "public static void pln(String value){\n\t\tSystem.out.println(value);\n\t}", "pln", "{\n\t\tSystem.out.println(value);\n\t}", "System.out.println(value)", "System.out.println", "System.out", "System", "System.out", "value", "String value", "value", "public static int i(){\n\t\treturn in.Int();\n\t}", "i", "{\n\t\treturn in.Int();\n\t}", "return in.Int();", "in.Int()", "in.Int", "in", "public static String s(){\n\t\treturn in.String();\n\t}", "s", "{\n\t\treturn in.String();\n\t}", "return in.String();", "in.String()", "in.String", "in", "static class Pair{\n\t\tint x;\n\t\tint z;\n\t\tPair(int x,int z){\n\t\t\tthis.x=x;\n\t\t\tthis.z=z;\n\t\t}\n\t\t/*@Override\n\t\tpublic int hashCode() \n\t\t{ \n\t\t\tfinal int temp = 14; \n\t\t\tint ans = 1; \n\t\t\tans =x*31+y*13; \n\t\t\treturn (int)ans;\n\t\t}\n @Override\n public boolean equals(Object o) \n { \n if (this == o) { \n return true; \n } /\n if (o == null) { \n return false; \n } \n if (this.getClass() != o.getClass()) { \n return false; \n } \n Pair other = (Pair)o; \n if (this.x != other.x || this.y!=other.y) { \n return false; \n } \n return true; \n }*/\n\t}", "Pair", "int x;", "x", "int z;", "z", "Pair(int x,int z){\n\t\t\tthis.x=x;\n\t\t\tthis.z=z;\n\t\t}", "Pair", "{\n\t\t\tthis.x=x;\n\t\t\tthis.z=z;\n\t\t}", "this.x=x", "this.x", "this", "this.x", "x", "this.z=z", "this.z", "this", "this.z", "z", "int x", "x", "int z", "z", "class InputReader \n{\n\tprivate InputStream stream;\n\tprivate byte[] buf = new byte[1024];\n\tprivate int curChar;\n\tprivate int numChars;\n\tprivate SpaceCharFilter filter;\n\tpublic InputReader(InputStream stream) {\n\t\tthis.stream = stream;\n\t}\n\tpublic int read() {\n\t\tif (numChars== -1)\n\t\t\tthrow new InputMismatchException();\n\t\tif (curChar >= numChars) {\n\t\t\tcurChar = 0;\n\t\t\ttry {\n\t\t\t\tnumChars = stream.read(buf);\n\t\t\t} catch (IOException e) {\n\t\t\t\tthrow new InputMismatchException();\n\t\t\t}\n\t\t\tif (numChars <= 0)\n\t\t\t\treturn -1;\n\t\t}\n\t\treturn buf[curChar++];\n\t}\n\tpublic int Int() {\n\t\tint c = read();\n\t\twhile (isSpaceChar(c))\n\t\t\tc = read();\n\t\tint sgn = 1;\n\t\tif (c == '-') {\n\t\t\tsgn = -1;\n\t\t\tc = read();\n\t\t}\n\t\tint res = 0;\n\t\tdo {\n\t\t\tif (c < '0' || c > '9')\n\t\t\t\tthrow new InputMismatchException();\n\t\t\tres *= 10;\n\t\t\tres += c - '0';\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));\n\t\treturn res * sgn;\n\t}\n\tpublic String String() {\n\t\tint c = read();\n\t\twhile (isSpaceChar(c))\n\t\t\tc = read();\n\t\tStringBuilder res = new StringBuilder();\n\t\tdo {\n\t\t\tres.appendCodePoint(c);\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));\n\t\treturn res.toString();\n\t} \n\tpublic boolean isSpaceChar(int c) {\n\t\tif (filter != null)\n\t\t\treturn filter.isSpaceChar(c);\n\t\treturn c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n\t} \n\tpublic String next() {\n\t\treturn String();\n\t} \n\tpublic interface SpaceCharFilter {\n\t\tpublic boolean isSpaceChar(int ch);\n\t}\n}", "InputReader", "private InputStream stream;", "stream", "private byte[] buf = new byte[1024];", "buf", "new byte[1024]", "1024", "private int curChar;", "curChar", "private int numChars;", "numChars", "private SpaceCharFilter filter;", "filter", "public InputReader(InputStream stream) {\n\t\tthis.stream = stream;\n\t}", "InputReader", "{\n\t\tthis.stream = stream;\n\t}", "this.stream = stream", "this.stream", "this", "this.stream", "stream", "InputStream stream", "stream", "public int read() {\n\t\tif (numChars== -1)\n\t\t\tthrow new InputMismatchException();\n\t\tif (curChar >= numChars) {\n\t\t\tcurChar = 0;\n\t\t\ttry {\n\t\t\t\tnumChars = stream.read(buf);\n\t\t\t} catch (IOException e) {\n\t\t\t\tthrow new InputMismatchException();\n\t\t\t}\n\t\t\tif (numChars <= 0)\n\t\t\t\treturn -1;\n\t\t}\n\t\treturn buf[curChar++];\n\t}", "read", "{\n\t\tif (numChars== -1)\n\t\t\tthrow new InputMismatchException();\n\t\tif (curChar >= numChars) {\n\t\t\tcurChar = 0;\n\t\t\ttry {\n\t\t\t\tnumChars = stream.read(buf);\n\t\t\t} catch (IOException e) {\n\t\t\t\tthrow new InputMismatchException();\n\t\t\t}\n\t\t\tif (numChars <= 0)\n\t\t\t\treturn -1;\n\t\t}\n\t\treturn buf[curChar++];\n\t}", "if (numChars== -1)\n\t\t\tthrow new InputMismatchException();", "numChars== -1", "numChars", "-1", "1", "throw new InputMismatchException();", "new InputMismatchException()", "if (curChar >= numChars) {\n\t\t\tcurChar = 0;\n\t\t\ttry {\n\t\t\t\tnumChars = stream.read(buf);\n\t\t\t} catch (IOException e) {\n\t\t\t\tthrow new InputMismatchException();\n\t\t\t}\n\t\t\tif (numChars <= 0)\n\t\t\t\treturn -1;\n\t\t}", "curChar >= numChars", "curChar", "numChars", "{\n\t\t\tcurChar = 0;\n\t\t\ttry {\n\t\t\t\tnumChars = stream.read(buf);\n\t\t\t} catch (IOException e) {\n\t\t\t\tthrow new InputMismatchException();\n\t\t\t}\n\t\t\tif (numChars <= 0)\n\t\t\t\treturn -1;\n\t\t}", "curChar = 0", "curChar", "0", "try {\n\t\t\t\tnumChars = stream.read(buf);\n\t\t\t} catch (IOException e) {\n\t\t\t\tthrow new InputMismatchException();\n\t\t\t}", "catch (IOException e) {\n\t\t\t\tthrow new InputMismatchException();\n\t\t\t}", "IOException e", "{\n\t\t\t\tthrow new InputMismatchException();\n\t\t\t}", "throw new InputMismatchException();", "new InputMismatchException()", "{\n\t\t\t\tnumChars = stream.read(buf);\n\t\t\t}", "numChars = stream.read(buf)", "numChars", "stream.read(buf)", "stream.read", "stream", "buf", "if (numChars <= 0)\n\t\t\t\treturn -1;", "numChars <= 0", "numChars", "0", "return -1;", "-1", "1", "return buf[curChar++];", "buf[curChar++]", "buf", "curChar++", "curChar", "public int Int() {\n\t\tint c = read();\n\t\twhile (isSpaceChar(c))\n\t\t\tc = read();\n\t\tint sgn = 1;\n\t\tif (c == '-') {\n\t\t\tsgn = -1;\n\t\t\tc = read();\n\t\t}\n\t\tint res = 0;\n\t\tdo {\n\t\t\tif (c < '0' || c > '9')\n\t\t\t\tthrow new InputMismatchException();\n\t\t\tres *= 10;\n\t\t\tres += c - '0';\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));\n\t\treturn res * sgn;\n\t}", "Int", "{\n\t\tint c = read();\n\t\twhile (isSpaceChar(c))\n\t\t\tc = read();\n\t\tint sgn = 1;\n\t\tif (c == '-') {\n\t\t\tsgn = -1;\n\t\t\tc = read();\n\t\t}\n\t\tint res = 0;\n\t\tdo {\n\t\t\tif (c < '0' || c > '9')\n\t\t\t\tthrow new InputMismatchException();\n\t\t\tres *= 10;\n\t\t\tres += c - '0';\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));\n\t\treturn res * sgn;\n\t}", "int c = read();", "c", "read()", "read", "while (isSpaceChar(c))\n\t\t\tc = read();", "isSpaceChar(c)", "isSpaceChar", "c", "c = read()", "c", "read()", "read", "int sgn = 1;", "sgn", "1", "if (c == '-') {\n\t\t\tsgn = -1;\n\t\t\tc = read();\n\t\t}", "c == '-'", "c", "'-'", "{\n\t\t\tsgn = -1;\n\t\t\tc = read();\n\t\t}", "sgn = -1", "sgn", "-1", "1", "c = read()", "c", "read()", "read", "int res = 0;", "res", "0", "do {\n\t\t\tif (c < '0' || c > '9')\n\t\t\t\tthrow new InputMismatchException();\n\t\t\tres *= 10;\n\t\t\tres += c - '0';\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n\t\t\tif (c < '0' || c > '9')\n\t\t\t\tthrow new InputMismatchException();\n\t\t\tres *= 10;\n\t\t\tres += c - '0';\n\t\t\tc = read();\n\t\t}", "if (c < '0' || c > '9')\n\t\t\t\tthrow new InputMismatchException();", "c < '0' || c > '9'", "c < '0'", "c", "'0'", "c > '9'", "c", "'9'", "throw new InputMismatchException();", "new InputMismatchException()", "res *= 10", "res", "10", "res += c - '0'", "res", "c - '0'", "c", "'0'", "c = read()", "c", "read()", "read", "return res * sgn;", "res * sgn", "res", "sgn", "public String String() {\n\t\tint c = read();\n\t\twhile (isSpaceChar(c))\n\t\t\tc = read();\n\t\tStringBuilder res = new StringBuilder();\n\t\tdo {\n\t\t\tres.appendCodePoint(c);\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));\n\t\treturn res.toString();\n\t}", "String", "{\n\t\tint c = read();\n\t\twhile (isSpaceChar(c))\n\t\t\tc = read();\n\t\tStringBuilder res = new StringBuilder();\n\t\tdo {\n\t\t\tres.appendCodePoint(c);\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));\n\t\treturn res.toString();\n\t}", "int c = read();", "c", "read()", "read", "while (isSpaceChar(c))\n\t\t\tc = read();", "isSpaceChar(c)", "isSpaceChar", "c", "c = read()", "c", "read()", "read", "StringBuilder res = new StringBuilder();", "res", "new StringBuilder()", "do {\n\t\t\tres.appendCodePoint(c);\n\t\t\tc = read();\n\t\t} while (!isSpaceChar(c));", "!isSpaceChar(c)", "isSpaceChar(c)", "isSpaceChar", "c", "{\n\t\t\tres.appendCodePoint(c);\n\t\t\tc = read();\n\t\t}", "res.appendCodePoint(c)", "res.appendCodePoint", "res", "c", "c = read()", "c", "read()", "read", "return res.toString();", "res.toString()", "res.toString", "res", "public boolean isSpaceChar(int c) {\n\t\tif (filter != null)\n\t\t\treturn filter.isSpaceChar(c);\n\t\treturn c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n\t}", "isSpaceChar", "{\n\t\tif (filter != null)\n\t\t\treturn filter.isSpaceChar(c);\n\t\treturn c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;\n\t}", "if (filter != null)\n\t\t\treturn filter.isSpaceChar(c);", "filter != null", "filter", "null", "return filter.isSpaceChar(c);", "filter.isSpaceChar(c)", "filter.isSpaceChar", "filter", "c", "return c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1;", "c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1", "c == '\\t'", "c == '\\r'", "c == ' ' || c == '\\n' || c == '\\r' || c == '\\t' || c == -1", "c == ' '", "c", "' '", "c == '\\n'", "c", "'\\n'", "c == '\\r'", "c", "'\\r'", "c == '\\t'", "c", "'\\t'", "c == -1", "c", "-1", "1", "int c", "c", "public String next() {\n\t\treturn String();\n\t}", "next", "{\n\t\treturn String();\n\t}", "return String();", "String()", "String", "public interface SpaceCharFilter {\n\t\tpublic boolean isSpaceChar(int ch);\n\t}", "SpaceCharFilter", "public boolean isSpaceChar(int ch);", "isSpaceChar", "int ch", "ch", "class OutputWriter {\n\tprivate final PrintWriter writer;\n\tpublic OutputWriter(OutputStream outputStream) {\n\t\twriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));\n\t}\n\tpublic OutputWriter(Writer writer) {\n\t\tthis.writer = new PrintWriter(writer);\n\t}\n\tpublic void print(Object...objects) {\n\t\tfor (int i = 0; i < objects.length; i++) {\n\t\t\tif (i != 0)\n\t\t\t\twriter.print(' ');\n\t\t\twriter.print(objects[i]);\n\t\t}\n\t}\n\tpublic void printLine(Object...objects) {\n\t\tprint(objects);\n\t\twriter.println();\n\t}\n\tpublic void close() {\n\t\twriter.close();\n\t}\n\tpublic void flush() {\n\t\twriter.flush();\n\t}\n }", "OutputWriter", "private final PrintWriter writer;", "writer", "public OutputWriter(OutputStream outputStream) {\n\t\twriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));\n\t}", "OutputWriter", "{\n\t\twriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));\n\t}", "writer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)))", "writer", "new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)))", "OutputStream outputStream", "outputStream", "public OutputWriter(Writer writer) {\n\t\tthis.writer = new PrintWriter(writer);\n\t}", "OutputWriter", "{\n\t\tthis.writer = new PrintWriter(writer);\n\t}", "this.writer = new PrintWriter(writer)", "this.writer", "this", "this.writer", "new PrintWriter(writer)", "Writer writer", "writer", "public void print(Object...objects) {\n\t\tfor (int i = 0; i < objects.length; i++) {\n\t\t\tif (i != 0)\n\t\t\t\twriter.print(' ');\n\t\t\twriter.print(objects[i]);\n\t\t}\n\t}", "print", "{\n\t\tfor (int i = 0; i < objects.length; i++) {\n\t\t\tif (i != 0)\n\t\t\t\twriter.print(' ');\n\t\t\twriter.print(objects[i]);\n\t\t}\n\t}", "for (int i = 0; i < objects.length; i++) {\n\t\t\tif (i != 0)\n\t\t\t\twriter.print(' ');\n\t\t\twriter.print(objects[i]);\n\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < objects.length", "i", "objects.length", "objects", "objects.length", "i++", "i++", "i", "{\n\t\t\tif (i != 0)\n\t\t\t\twriter.print(' ');\n\t\t\twriter.print(objects[i]);\n\t\t}", "{\n\t\t\tif (i != 0)\n\t\t\t\twriter.print(' ');\n\t\t\twriter.print(objects[i]);\n\t\t}", "if (i != 0)\n\t\t\t\twriter.print(' ');", "i != 0", "i", "0", "writer.print(' ')", "writer.print", "writer", "' '", "writer.print(objects[i])", "writer.print", "writer", "objects[i]", "objects", "i", "Object...objects", "objects", "public void printLine(Object...objects) {\n\t\tprint(objects);\n\t\twriter.println();\n\t}", "printLine", "{\n\t\tprint(objects);\n\t\twriter.println();\n\t}", "print(objects)", "print", "objects", "writer.println()", "writer.println", "writer", "Object...objects", "objects", "public void close() {\n\t\twriter.close();\n\t}", "close", "{\n\t\twriter.close();\n\t}", "writer.close()", "writer.close", "writer", "public void flush() {\n\t\twriter.flush();\n\t}", "flush", "{\n\t\twriter.flush();\n\t}", "writer.flush()", "writer.flush", "writer", "class IOUtils {\n\tpublic static int[] readIntArray(InputReader in, int size) {\n\t\tint[] array = new int[size];\n\t\tfor (int i = 0; i < size; i++)\n\t\t\tarray[i] = in.Int();\n\t\treturn array;\n\t}\n}", "IOUtils", "public static int[] readIntArray(InputReader in, int size) {\n\t\tint[] array = new int[size];\n\t\tfor (int i = 0; i < size; i++)\n\t\t\tarray[i] = in.Int();\n\t\treturn array;\n\t}", "readIntArray", "{\n\t\tint[] array = new int[size];\n\t\tfor (int i = 0; i < size; i++)\n\t\t\tarray[i] = in.Int();\n\t\treturn array;\n\t}", "int[] array = new int[size];", "array", "new int[size]", "size", "for (int i = 0; i < size; i++)\n\t\t\tarray[i] = in.Int();", "int i = 0;", "int i = 0;", "i", "0", "i < size", "i", "size", "i++", "i++", "i", "array[i] = in.Int();", "array[i] = in.Int()", "array[i]", "array", "i", "in.Int()", "in.Int", "in", "return array;", "array", "InputReader in", "in", "int size", "size", "public class Main{\n\tstatic public void main(String args[])throws IOException{\n\t\tint tt=1;\n\t\tStringBuilder sb=new StringBuilder();\n\t\tfor(int ttt=1;ttt<=tt;ttt++){\n\t\t\tint x=i();\n\t\t\tx=1-x;\n\t\t\tpln(x+\"\");\n\t\t}\n\t\tSystem.out.print(sb.toString());\n\t}\n\tstatic InputReader in=new InputReader(System.in);\n\tstatic OutputWriter out=new OutputWriter(System.out);\n\tstatic ArrayList<ArrayList<Integer>> graph;\n\tstatic int mod=1000000007;\n\tstatic class Pair{\n\t\tint x;\n\t\tint z;\n\t\tPair(int x,int z){\n\t\t\tthis.x=x;\n\t\t\tthis.z=z;\n\t\t}\n\t\t/*@Override\n\t\tpublic int hashCode() \n\t\t{ \n\t\t\tfinal int temp = 14; \n\t\t\tint ans = 1; \n\t\t\tans =x*31+y*13; \n\t\t\treturn (int)ans;\n\t\t}\n @Override\n public boolean equals(Object o) \n { \n if (this == o) { \n return true; \n } /\n if (o == null) { \n return false; \n } \n if (this.getClass() != o.getClass()) { \n return false; \n } \n Pair other = (Pair)o; \n if (this.x != other.x || this.y!=other.y) { \n return false; \n } \n return true; \n }*/\n\t}\n\tpublic static long[] sort(long[] a){\n\t\tint n=a.length;\n\t\tArrayList<Long> ar=new ArrayList<>();\n\t\tfor(int i=0;i<a.length;i++){\n\t\t\tar.add(a[i]);\n\t\t}\n\t\tCollections.sort(ar);\n\t\tfor(int i=0;i<n;i++){\n\t\t\ta[i]=ar.get(i);\n\t\t}\n\t\treturn a;\n\t}\n\tpublic static long pow(long a, long b){\n long result=1;\n while(b>0){\n if (b % 2 != 0){\n result=(result*a);\n b--;\n } \n a=(a*a);\n b /= 2;\n } \n return result;\n }\n\tpublic static int gcd(int a, int b){\n if (a == 0){\n return b;\n\t\t}\n return gcd(b%a, a);\n }\n\tpublic static int lcm(int a, int b){\n\t\treturn a*(b/gcd(a,b));\n\t}\n\tpublic static long l(){\n\t\tString s=in.String();\n\t\treturn Long.parseLong(s);\n\t}\n\tpublic static void pln(String value){\n\t\tSystem.out.println(value);\n\t}\n\tpublic static int i(){\n\t\treturn in.Int();\n\t}\n\tpublic static String s(){\n\t\treturn in.String();\n\t}\n}", "public class Main{\n\tstatic public void main(String args[])throws IOException{\n\t\tint tt=1;\n\t\tStringBuilder sb=new StringBuilder();\n\t\tfor(int ttt=1;ttt<=tt;ttt++){\n\t\t\tint x=i();\n\t\t\tx=1-x;\n\t\t\tpln(x+\"\");\n\t\t}\n\t\tSystem.out.print(sb.toString());\n\t}\n\tstatic InputReader in=new InputReader(System.in);\n\tstatic OutputWriter out=new OutputWriter(System.out);\n\tstatic ArrayList<ArrayList<Integer>> graph;\n\tstatic int mod=1000000007;\n\tstatic class Pair{\n\t\tint x;\n\t\tint z;\n\t\tPair(int x,int z){\n\t\t\tthis.x=x;\n\t\t\tthis.z=z;\n\t\t}\n\t\t/*@Override\n\t\tpublic int hashCode() \n\t\t{ \n\t\t\tfinal int temp = 14; \n\t\t\tint ans = 1; \n\t\t\tans =x*31+y*13; \n\t\t\treturn (int)ans;\n\t\t}\n @Override\n public boolean equals(Object o) \n { \n if (this == o) { \n return true; \n } /\n if (o == null) { \n return false; \n } \n if (this.getClass() != o.getClass()) { \n return false; \n } \n Pair other = (Pair)o; \n if (this.x != other.x || this.y!=other.y) { \n return false; \n } \n return true; \n }*/\n\t}\n\tpublic static long[] sort(long[] a){\n\t\tint n=a.length;\n\t\tArrayList<Long> ar=new ArrayList<>();\n\t\tfor(int i=0;i<a.length;i++){\n\t\t\tar.add(a[i]);\n\t\t}\n\t\tCollections.sort(ar);\n\t\tfor(int i=0;i<n;i++){\n\t\t\ta[i]=ar.get(i);\n\t\t}\n\t\treturn a;\n\t}\n\tpublic static long pow(long a, long b){\n long result=1;\n while(b>0){\n if (b % 2 != 0){\n result=(result*a);\n b--;\n } \n a=(a*a);\n b /= 2;\n } \n return result;\n }\n\tpublic static int gcd(int a, int b){\n if (a == 0){\n return b;\n\t\t}\n return gcd(b%a, a);\n }\n\tpublic static int lcm(int a, int b){\n\t\treturn a*(b/gcd(a,b));\n\t}\n\tpublic static long l(){\n\t\tString s=in.String();\n\t\treturn Long.parseLong(s);\n\t}\n\tpublic static void pln(String value){\n\t\tSystem.out.println(value);\n\t}\n\tpublic static int i(){\n\t\treturn in.Int();\n\t}\n\tpublic static String s(){\n\t\treturn in.String();\n\t}\n}", "Main" ]
import java.util.*; import java.util.function.Function; import java.util.stream.Collectors; import java.io.*; import java.math.*; public class Main{ static public void main(String args[])throws IOException{ int tt=1; StringBuilder sb=new StringBuilder(); for(int ttt=1;ttt<=tt;ttt++){ int x=i(); x=1-x; pln(x+""); } System.out.print(sb.toString()); } static InputReader in=new InputReader(System.in); static OutputWriter out=new OutputWriter(System.out); static ArrayList<ArrayList<Integer>> graph; static int mod=1000000007; static class Pair{ int x; int z; Pair(int x,int z){ this.x=x; this.z=z; } /*@Override public int hashCode() { final int temp = 14; int ans = 1; ans =x*31+y*13; return (int)ans; } @Override public boolean equals(Object o) { if (this == o) { return true; } / if (o == null) { return false; } if (this.getClass() != o.getClass()) { return false; } Pair other = (Pair)o; if (this.x != other.x || this.y!=other.y) { return false; } return true; }*/ } public static long[] sort(long[] a){ int n=a.length; ArrayList<Long> ar=new ArrayList<>(); for(int i=0;i<a.length;i++){ ar.add(a[i]); } Collections.sort(ar); for(int i=0;i<n;i++){ a[i]=ar.get(i); } return a; } public static long pow(long a, long b){ long result=1; while(b>0){ if (b % 2 != 0){ result=(result*a); b--; } a=(a*a); b /= 2; } return result; } public static int gcd(int a, int b){ if (a == 0){ return b; } return gcd(b%a, a); } public static int lcm(int a, int b){ return a*(b/gcd(a,b)); } public static long l(){ String s=in.String(); return Long.parseLong(s); } public static void pln(String value){ System.out.println(value); } public static int i(){ return in.Int(); } public static String s(){ return in.String(); } } class InputReader { private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int numChars; private SpaceCharFilter filter; public InputReader(InputStream stream) { this.stream = stream; } public int read() { if (numChars== -1) throw new InputMismatchException(); if (curChar >= numChars) { curChar = 0; try { numChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (numChars <= 0) return -1; } return buf[curChar++]; } public int Int() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public String String() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public boolean isSpaceChar(int c) { if (filter != null) return filter.isSpaceChar(c); return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public String next() { return String(); } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } class OutputWriter { private final PrintWriter writer; public OutputWriter(OutputStream outputStream) { writer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream))); } public OutputWriter(Writer writer) { this.writer = new PrintWriter(writer); } public void print(Object...objects) { for (int i = 0; i < objects.length; i++) { if (i != 0) writer.print(' '); writer.print(objects[i]); } } public void printLine(Object...objects) { print(objects); writer.println(); } public void close() { writer.close(); } public void flush() { writer.flush(); } } class IOUtils { public static int[] readIntArray(InputReader in, int size) { int[] array = new int[size]; for (int i = 0; i < size; i++) array[i] = in.Int(); return array; } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 0, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 17, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 4, 18, 13, 29, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 148, 11 ], [ 148, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 14, 20 ], [ 20, 21 ], [ 14, 22 ], [ 22, 23 ], [ 14, 24 ], [ 24, 25 ], [ 14, 26 ], [ 26, 27 ], [ 14, 28 ], [ 28, 29 ], [ 14, 30 ], [ 30, 31 ], [ 14, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 14, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 37, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 41, 46 ], [ 37, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 47, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 51, 56 ], [ 12, 57 ], [ 57, 58 ], [ 148, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 59, 63 ], [ 63, 64 ], [ 59, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 59, 71 ], [ 71, 72 ], [ 71, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 75, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 74, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 84, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 73, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 59, 99 ], [ 99, 100 ], [ 99, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 103, 106 ], [ 106, 107 ], [ 59, 108 ], [ 108, 109 ], [ 108, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 113, 114 ], [ 112, 115 ], [ 115, 116 ], [ 59, 117 ], [ 117, 118 ], [ 117, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 122, 123 ], [ 121, 124 ], [ 124, 125 ], [ 59, 126 ], [ 126, 127 ], [ 126, 128 ], [ 128, 129 ], [ 129, 130 ], [ 129, 131 ], [ 128, 132 ], [ 132, 133 ], [ 133, 134 ], [ 133, 135 ], [ 135, 136 ], [ 136, 137 ], [ 137, 138 ], [ 132, 139 ], [ 139, 140 ], [ 140, 141 ], [ 140, 142 ], [ 142, 143 ], [ 143, 144 ], [ 128, 145 ], [ 145, 146 ], [ 0, 147 ], [ 147, 148 ], [ 147, 149 ] ]
[ "/* package codechef; // don't place package name! */\n\nimport java.util.*;\nimport java.lang.*;\nimport java.io.*;\n\n/* Name of the class has to be \"Main\" only if the class is public. */\npublic class Main {\n public static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n public static void main(String[] args) throws java.lang.Exception {\n // your code goes here\n FastReader scn = new FastReader();\n int i, j, t, n, x, y, num;\n n = scn.nextInt();\n if (n==0)\n System.out.println(\"1\");\n else if (n==1)\n System.out.println(\"0\");\n }\n}", "import java.util.*;", "util.*", "java", "import java.lang.*;", "lang.*", "java", "import java.io.*;", "io.*", "java", "public class Main {\n public static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n public static void main(String[] args) throws java.lang.Exception {\n // your code goes here\n FastReader scn = new FastReader();\n int i, j, t, n, x, y, num;\n n = scn.nextInt();\n if (n==0)\n System.out.println(\"1\");\n else if (n==1)\n System.out.println(\"0\");\n }\n}", "Main", "public static void main(String[] args) throws java.lang.Exception {\n // your code goes here\n FastReader scn = new FastReader();\n int i, j, t, n, x, y, num;\n n = scn.nextInt();\n if (n==0)\n System.out.println(\"1\");\n else if (n==1)\n System.out.println(\"0\");\n }", "main", "{\n // your code goes here\n FastReader scn = new FastReader();\n int i, j, t, n, x, y, num;\n n = scn.nextInt();\n if (n==0)\n System.out.println(\"1\");\n else if (n==1)\n System.out.println(\"0\");\n }", "FastReader scn = new FastReader();", "scn", "new FastReader()", "int i", "i", "j", "j", "t", "t", "n", "n", "x", "x", "y", "y", "num;", "num", "n = scn.nextInt()", "n", "scn.nextInt()", "scn.nextInt", "scn", "if (n==0)\n System.out.println(\"1\");\n else if (n==1)\n System.out.println(\"0\");", "n==0", "n", "0", "System.out.println(\"1\")", "System.out.println", "System.out", "System", "System.out", "\"1\"", "if (n==1)\n System.out.println(\"0\");", "n==1", "n", "1", "System.out.println(\"0\")", "System.out.println", "System.out", "System", "System.out", "\"0\"", "String[] args", "args", "public static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }", "FastReader", "BufferedReader br;", "br", "StringTokenizer st;", "st", "public FastReader() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }", "FastReader", "{\n br = new BufferedReader(new InputStreamReader(System.in));\n }", "br = new BufferedReader(new InputStreamReader(System.in))", "br", "new BufferedReader(new InputStreamReader(System.in))", "String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "next", "{\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }", "while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }", "st == null || !st.hasMoreElements()", "st == null", "st", "null", "!st.hasMoreElements()", "st.hasMoreElements()", "st.hasMoreElements", "st", "{\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }", "try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }", "catch (IOException e) {\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n st = new StringTokenizer(br.readLine());\n }", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "int nextInt() {\n return Integer.parseInt(next());\n }", "nextInt", "{\n return Integer.parseInt(next());\n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "long nextLong() {\n return Long.parseLong(next());\n }", "nextLong", "{\n return Long.parseLong(next());\n }", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "double nextDouble() {\n return Double.parseDouble(next());\n }", "nextDouble", "{\n return Double.parseDouble(next());\n }", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }", "nextLine", "{\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }", "String str = \"\";", "str", "\"\"", "try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }", "catch (IOException e) {\n e.printStackTrace();\n }", "IOException e", "{\n e.printStackTrace();\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n str = br.readLine();\n }", "str = br.readLine()", "str", "br.readLine()", "br.readLine", "br", "return str;", "str", "public class Main {\n public static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n public static void main(String[] args) throws java.lang.Exception {\n // your code goes here\n FastReader scn = new FastReader();\n int i, j, t, n, x, y, num;\n n = scn.nextInt();\n if (n==0)\n System.out.println(\"1\");\n else if (n==1)\n System.out.println(\"0\");\n }\n}", "public class Main {\n public static class FastReader {\n BufferedReader br;\n StringTokenizer st;\n\n public FastReader() {\n br = new BufferedReader(new InputStreamReader(System.in));\n }\n\n String next() {\n while (st == null || !st.hasMoreElements()) {\n try {\n st = new StringTokenizer(br.readLine());\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n return st.nextToken();\n }\n\n int nextInt() {\n return Integer.parseInt(next());\n }\n\n long nextLong() {\n return Long.parseLong(next());\n }\n\n double nextDouble() {\n return Double.parseDouble(next());\n }\n\n String nextLine() {\n String str = \"\";\n try {\n str = br.readLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n return str;\n }\n }\n\n public static void main(String[] args) throws java.lang.Exception {\n // your code goes here\n FastReader scn = new FastReader();\n int i, j, t, n, x, y, num;\n n = scn.nextInt();\n if (n==0)\n System.out.println(\"1\");\n else if (n==1)\n System.out.println(\"0\");\n }\n}", "Main" ]
/* package codechef; // don't place package name! */ import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ public class Main { public static class FastReader { BufferedReader br; StringTokenizer st; public FastReader() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } public static void main(String[] args) throws java.lang.Exception { // your code goes here FastReader scn = new FastReader(); int i, j, t, n, x, y, num; n = scn.nextInt(); if (n==0) System.out.println("1"); else if (n==1) System.out.println("0"); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 42, 2, 40, 13, 17, 30, 0, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 0, 13, 20, 4, 18, 4, 18, 13, 4, 13, 13, 17, 17, 17, 4, 18, 18, 13, 13, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 13, 17, 17, 17, 23, 13, 12, 13, 30, 14, 4, 18, 13, 17, 29, 17, 41, 13, 17, 11, 1, 41, 13, 17, 2, 13, 4, 18, 13, 1, 40, 13, 30, 30, 14, 2, 4, 18, 13, 13, 4, 18, 13, 2, 13, 17, 30, 40, 13, 0, 13, 4, 18, 13, 13, 30, 14, 2, 4, 18, 13, 17, 0, 13, 4, 18, 13, 2, 13, 17, 14, 2, 13, 17, 30, 0, 13, 4, 18, 13, 13, 17, 29, 4, 13, 13, 17, 14, 2, 4, 18, 13, 17, 0, 13, 4, 18, 13, 2, 4, 18, 13, 17, 14, 2, 13, 17, 30, 0, 13, 4, 18, 13, 13, 17, 29, 4, 13, 13, 17, 29, 17, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 13, 29, 18, 13, 13, 14, 2, 13, 13, 29, 13, 41, 13, 41, 13, 18, 13, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 0, 13, 4, 13, 13, 2, 13, 2, 13, 13, 2, 13, 17, 0, 13, 4, 18, 13, 13, 13, 4, 18, 13, 13, 13, 29, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 18, 13, 13, 30, 29, 17, 14, 2, 13, 17, 30, 41, 13, 17, 11, 1, 41, 13, 17, 2, 13, 2, 4, 18, 13, 17, 1, 40, 13, 30, 30, 14, 2, 4, 18, 13, 13, 4, 18, 13, 2, 13, 17, 29, 17, 11, 1, 41, 13, 17, 2, 13, 4, 18, 13, 1, 40, 13, 30, 30, 0, 13, 2, 2, 4, 18, 13, 13, 17, 17, 14, 2, 13, 13, 29, 17, 29, 17, 14, 2, 13, 17, 29, 17, 41, 13, 4, 13, 13, 2, 13, 17, 13, 2, 13, 17, 2, 13, 18, 13, 13, 41, 13, 4, 13, 13, 2, 13, 17, 13, 13, 13, 29, 2, 13, 13, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 2, 2, 2, 13, 18, 13, 13, 2, 13, 17, 2, 13, 18, 18, 13, 17, 13, 2, 13, 17, 29, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 13, 17, 29, 17, 29, 2, 2, 17, 4, 13, 2, 13, 17, 17, 23, 13, 12, 13, 30, 41, 13, 17, 41, 13, 2, 18, 13, 13, 17, 41, 13, 17, 42, 2, 13, 13, 30, 41, 13, 2, 13, 2, 2, 13, 13, 17, 14, 2, 18, 13, 13, 13, 30, 0, 13, 2, 13, 17, 0, 13, 13, 0, 13, 2, 13, 17, 29, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 17, 41, 13, 2, 4, 18, 13, 17, 42, 2, 13, 13, 30, 14, 2, 4, 18, 13, 40, 13, 4, 18, 13, 40, 13, 29, 17, 29, 17, 23, 13, 12, 13, 30, 14, 2, 13, 18, 13, 13, 30, 14, 4, 13, 13, 29, 13, 29, 17, 14, 2, 2, 4, 18, 13, 17, 4, 13, 13, 29, 13, 41, 13, 4, 13, 13, 2, 13, 18, 13, 13, 2, 13, 17, 41, 13, 4, 13, 13, 13, 2, 13, 17, 14, 2, 4, 18, 13, 17, 29, 13, 29, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 2, 13, 13, 2, 18, 13, 13, 13, 29, 17, 41, 13, 17, 41, 13, 17, 14, 2, 18, 13, 13, 13, 0, 13, 2, 4, 13, 13, 2, 13, 17, 13, 13, 17, 14, 2, 18, 13, 13, 13, 0, 13, 2, 4, 13, 13, 13, 2, 13, 17, 13, 17, 29, 2, 13, 13, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 14, 4, 18, 13, 18, 13, 13, 29, 13, 41, 13, 18, 13, 13, 41, 13, 18, 13, 13, 41, 13, 18, 13, 13, 14, 2, 4, 18, 4, 18, 13, 4, 18, 13, 17, 18, 13, 13, 17, 0, 13, 4, 13, 4, 18, 13, 4, 18, 13, 17, 2, 13, 17, 14, 2, 4, 18, 4, 18, 13, 4, 18, 13, 17, 18, 13, 13, 17, 0, 13, 4, 13, 4, 18, 4, 18, 13, 4, 18, 13, 17, 4, 18, 13, 17, 2, 13, 17, 14, 2, 4, 18, 4, 18, 13, 4, 18, 13, 17, 18, 13, 13, 17, 0, 13, 4, 13, 4, 18, 4, 18, 13, 4, 18, 13, 17, 4, 18, 13, 17, 2, 13, 17, 14, 4, 18, 13, 13, 29, 4, 18, 13, 13, 4, 18, 13, 13, 4, 18, 13, 13, 4, 18, 13, 13, 13, 29, 4, 18, 13, 13, 4, 18, 13, 13, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 915, 17 ], [ 915, 18 ], [ 18, 19 ], [ 915, 20 ], [ 20, 21 ], [ 915, 22 ], [ 22, 23 ], [ 915, 24 ], [ 24, 25 ], [ 915, 26 ], [ 26, 27 ], [ 915, 28 ], [ 28, 29 ], [ 915, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 32, 36 ], [ 36, 37 ], [ 36, 38 ], [ 32, 39 ], [ 39, 40 ], [ 39, 41 ], [ 32, 42 ], [ 42, 43 ], [ 42, 44 ], [ 32, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 48, 49 ], [ 47, 50 ], [ 50, 51 ], [ 51, 52 ], [ 32, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 54, 57 ], [ 53, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 58, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 65, 66 ], [ 64, 67 ], [ 67, 68 ], [ 68, 69 ], [ 58, 70 ], [ 70, 71 ], [ 70, 72 ], [ 58, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 75, 78 ], [ 78, 79 ], [ 78, 80 ], [ 78, 81 ], [ 78, 82 ], [ 73, 83 ], [ 32, 84 ], [ 84, 85 ], [ 85, 86 ], [ 86, 87 ], [ 86, 88 ], [ 84, 89 ], [ 915, 90 ], [ 90, 91 ], [ 90, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 92, 96 ], [ 96, 97 ], [ 96, 98 ], [ 98, 99 ], [ 99, 100 ], [ 92, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 101, 106 ], [ 106, 107 ], [ 107, 108 ], [ 107, 109 ], [ 106, 110 ], [ 106, 111 ], [ 90, 112 ], [ 112, 113 ], [ 915, 114 ], [ 114, 115 ], [ 114, 116 ], [ 116, 117 ], [ 117, 118 ], [ 118, 119 ], [ 119, 120 ], [ 118, 121 ], [ 117, 122 ], [ 122, 123 ], [ 116, 124 ], [ 124, 125 ], [ 124, 126 ], [ 116, 127 ], [ 127, 128 ], [ 128, 129 ], [ 129, 130 ], [ 129, 131 ], [ 127, 132 ], [ 132, 133 ], [ 132, 134 ], [ 134, 135 ], [ 135, 136 ], [ 127, 137 ], [ 137, 138 ], [ 138, 139 ], [ 127, 140 ], [ 141, 141 ], [ 141, 142 ], [ 142, 143 ], [ 143, 144 ], [ 144, 145 ], [ 145, 146 ], [ 144, 147 ], [ 143, 148 ], [ 148, 149 ], [ 149, 150 ], [ 148, 151 ], [ 151, 152 ], [ 151, 153 ], [ 142, 154 ], [ 154, 155 ], [ 155, 156 ], [ 154, 157 ], [ 157, 158 ], [ 157, 159 ], [ 159, 160 ], [ 160, 161 ], [ 159, 162 ], [ 142, 163 ], [ 163, 164 ], [ 164, 165 ], [ 165, 166 ], [ 166, 167 ], [ 167, 168 ], [ 165, 169 ], [ 164, 170 ], [ 170, 171 ], [ 170, 172 ], [ 172, 173 ], [ 173, 174 ], [ 172, 175 ], [ 175, 176 ], [ 175, 177 ], [ 163, 178 ], [ 178, 179 ], [ 179, 180 ], [ 179, 181 ], [ 178, 182 ], [ 182, 183 ], [ 183, 184 ], [ 183, 185 ], [ 185, 186 ], [ 186, 187 ], [ 185, 188 ], [ 185, 189 ], [ 182, 190 ], [ 190, 191 ], [ 191, 192 ], [ 191, 193 ], [ 191, 194 ], [ 116, 195 ], [ 195, 196 ], [ 196, 197 ], [ 197, 198 ], [ 198, 199 ], [ 196, 200 ], [ 195, 201 ], [ 201, 202 ], [ 201, 203 ], [ 203, 204 ], [ 204, 205 ], [ 203, 206 ], [ 206, 207 ], [ 207, 208 ], [ 208, 209 ], [ 206, 210 ], [ 116, 211 ], [ 211, 212 ], [ 212, 213 ], [ 212, 214 ], [ 211, 215 ], [ 215, 216 ], [ 216, 217 ], [ 216, 218 ], [ 218, 219 ], [ 219, 220 ], [ 218, 221 ], [ 218, 222 ], [ 215, 223 ], [ 223, 224 ], [ 224, 225 ], [ 224, 226 ], [ 224, 227 ], [ 116, 228 ], [ 228, 229 ], [ 114, 230 ], [ 230, 231 ], [ 114, 232 ], [ 232, 233 ], [ 915, 234 ], [ 234, 235 ], [ 234, 236 ], [ 236, 237 ], [ 237, 238 ], [ 238, 239 ], [ 238, 240 ], [ 237, 241 ], [ 241, 242 ], [ 242, 243 ], [ 242, 244 ], [ 236, 245 ], [ 245, 246 ], [ 246, 247 ], [ 246, 248 ], [ 245, 249 ], [ 249, 250 ], [ 236, 251 ], [ 251, 252 ], [ 236, 253 ], [ 253, 254 ], [ 253, 255 ], [ 255, 256 ], [ 255, 257 ], [ 236, 258 ], [ 258, 259 ], [ 259, 260 ], [ 260, 261 ], [ 260, 262 ], [ 258, 263 ], [ 263, 264 ], [ 263, 265 ], [ 258, 266 ], [ 266, 267 ], [ 267, 268 ], [ 258, 269 ], [ 270, 270 ], [ 270, 271 ], [ 271, 272 ], [ 271, 273 ], [ 273, 274 ], [ 273, 275 ], [ 273, 276 ], [ 276, 277 ], [ 276, 278 ], [ 278, 279 ], [ 278, 280 ], [ 273, 281 ], [ 281, 282 ], [ 281, 283 ], [ 270, 284 ], [ 284, 285 ], [ 284, 286 ], [ 286, 287 ], [ 287, 288 ], [ 286, 289 ], [ 286, 290 ], [ 236, 291 ], [ 291, 292 ], [ 292, 293 ], [ 291, 294 ], [ 291, 295 ], [ 236, 296 ], [ 296, 297 ], [ 234, 298 ], [ 298, 299 ], [ 234, 300 ], [ 300, 301 ], [ 234, 302 ], [ 302, 303 ], [ 915, 304 ], [ 304, 305 ], [ 304, 306 ], [ 306, 307 ], [ 307, 308 ], [ 308, 309 ], [ 308, 310 ], [ 310, 311 ], [ 310, 312 ], [ 307, 313 ], [ 313, 314 ], [ 314, 315 ], [ 306, 316 ], [ 316, 317 ], [ 317, 318 ], [ 317, 319 ], [ 316, 320 ], [ 320, 321 ], [ 321, 322 ], [ 321, 323 ], [ 320, 324 ], [ 324, 325 ], [ 325, 326 ], [ 326, 327 ], [ 326, 328 ], [ 324, 329 ], [ 329, 330 ], [ 329, 331 ], [ 331, 332 ], [ 332, 333 ], [ 333, 334 ], [ 331, 335 ], [ 324, 336 ], [ 336, 337 ], [ 337, 338 ], [ 324, 339 ], [ 340, 340 ], [ 340, 341 ], [ 341, 342 ], [ 342, 343 ], [ 343, 344 ], [ 344, 345 ], [ 343, 346 ], [ 342, 347 ], [ 347, 348 ], [ 348, 349 ], [ 347, 350 ], [ 350, 351 ], [ 350, 352 ], [ 341, 353 ], [ 353, 354 ], [ 320, 355 ], [ 355, 356 ], [ 356, 357 ], [ 357, 358 ], [ 357, 359 ], [ 355, 360 ], [ 360, 361 ], [ 360, 362 ], [ 362, 363 ], [ 363, 364 ], [ 355, 365 ], [ 365, 366 ], [ 366, 367 ], [ 355, 368 ], [ 369, 369 ], [ 369, 370 ], [ 370, 371 ], [ 370, 372 ], [ 372, 373 ], [ 373, 374 ], [ 374, 375 ], [ 375, 376 ], [ 374, 377 ], [ 373, 378 ], [ 372, 379 ], [ 320, 380 ], [ 380, 381 ], [ 381, 382 ], [ 381, 383 ], [ 380, 384 ], [ 384, 385 ], [ 320, 386 ], [ 386, 387 ], [ 306, 388 ], [ 388, 389 ], [ 389, 390 ], [ 389, 391 ], [ 388, 392 ], [ 392, 393 ], [ 306, 394 ], [ 394, 395 ], [ 394, 396 ], [ 396, 397 ], [ 396, 398 ], [ 396, 399 ], [ 399, 400 ], [ 399, 401 ], [ 396, 402 ], [ 396, 403 ], [ 403, 404 ], [ 403, 405 ], [ 396, 406 ], [ 406, 407 ], [ 406, 408 ], [ 408, 409 ], [ 408, 410 ], [ 306, 411 ], [ 411, 412 ], [ 411, 413 ], [ 413, 414 ], [ 413, 415 ], [ 413, 416 ], [ 416, 417 ], [ 416, 418 ], [ 413, 419 ], [ 413, 420 ], [ 413, 421 ], [ 306, 422 ], [ 422, 423 ], [ 423, 424 ], [ 423, 425 ], [ 304, 426 ], [ 426, 427 ], [ 304, 428 ], [ 428, 429 ], [ 304, 430 ], [ 430, 431 ], [ 304, 432 ], [ 432, 433 ], [ 304, 434 ], [ 434, 435 ], [ 915, 436 ], [ 436, 437 ], [ 436, 438 ], [ 438, 439 ], [ 439, 440 ], [ 442, 441 ], [ 451, 442 ], [ 442, 443 ], [ 443, 444 ], [ 443, 445 ], [ 445, 446 ], [ 445, 447 ], [ 442, 448 ], [ 448, 449 ], [ 448, 450 ], [ 451, 451 ], [ 451, 452 ], [ 451, 453 ], [ 453, 454 ], [ 454, 455 ], [ 454, 456 ], [ 453, 457 ], [ 442, 458 ], [ 458, 459 ], [ 458, 460 ], [ 439, 461 ], [ 436, 462 ], [ 462, 463 ], [ 436, 464 ], [ 464, 465 ], [ 436, 466 ], [ 466, 467 ], [ 436, 468 ], [ 468, 469 ], [ 436, 470 ], [ 470, 471 ], [ 436, 472 ], [ 472, 473 ], [ 436, 474 ], [ 474, 475 ], [ 436, 476 ], [ 476, 477 ], [ 915, 478 ], [ 478, 479 ], [ 478, 480 ], [ 480, 481 ], [ 481, 482 ], [ 482, 483 ], [ 482, 484 ], [ 481, 485 ], [ 485, 486 ], [ 480, 487 ], [ 487, 488 ], [ 488, 489 ], [ 489, 490 ], [ 489, 491 ], [ 491, 492 ], [ 491, 493 ], [ 493, 494 ], [ 493, 495 ], [ 488, 496 ], [ 478, 497 ], [ 497, 498 ], [ 915, 499 ], [ 499, 500 ], [ 499, 501 ], [ 501, 502 ], [ 502, 503 ], [ 502, 504 ], [ 501, 505 ], [ 505, 506 ], [ 505, 507 ], [ 507, 508 ], [ 508, 509 ], [ 508, 510 ], [ 507, 511 ], [ 501, 512 ], [ 512, 513 ], [ 512, 514 ], [ 501, 515 ], [ 515, 516 ], [ 516, 517 ], [ 516, 518 ], [ 515, 519 ], [ 519, 520 ], [ 520, 521 ], [ 520, 522 ], [ 522, 523 ], [ 522, 524 ], [ 524, 525 ], [ 525, 526 ], [ 525, 527 ], [ 524, 528 ], [ 519, 529 ], [ 529, 530 ], [ 530, 531 ], [ 531, 532 ], [ 531, 533 ], [ 530, 534 ], [ 529, 535 ], [ 535, 536 ], [ 536, 537 ], [ 536, 538 ], [ 538, 539 ], [ 538, 540 ], [ 535, 541 ], [ 541, 542 ], [ 541, 543 ], [ 529, 544 ], [ 544, 545 ], [ 544, 546 ], [ 546, 547 ], [ 546, 548 ], [ 501, 549 ], [ 549, 550 ], [ 499, 551 ], [ 551, 552 ], [ 499, 553 ], [ 553, 554 ], [ 915, 555 ], [ 555, 556 ], [ 555, 557 ], [ 557, 558 ], [ 558, 559 ], [ 558, 560 ], [ 557, 561 ], [ 561, 562 ], [ 561, 563 ], [ 563, 564 ], [ 564, 565 ], [ 565, 566 ], [ 563, 567 ], [ 557, 568 ], [ 568, 569 ], [ 569, 570 ], [ 569, 571 ], [ 568, 572 ], [ 572, 573 ], [ 573, 574 ], [ 574, 575 ], [ 575, 576 ], [ 576, 577 ], [ 575, 578 ], [ 578, 579 ], [ 574, 580 ], [ 580, 581 ], [ 581, 582 ], [ 580, 583 ], [ 583, 584 ], [ 573, 585 ], [ 585, 586 ], [ 557, 587 ], [ 587, 588 ], [ 555, 589 ], [ 589, 590 ], [ 915, 591 ], [ 591, 592 ], [ 591, 593 ], [ 593, 594 ], [ 594, 595 ], [ 595, 596 ], [ 595, 597 ], [ 597, 598 ], [ 597, 599 ], [ 594, 600 ], [ 600, 601 ], [ 601, 602 ], [ 602, 603 ], [ 602, 604 ], [ 601, 605 ], [ 605, 606 ], [ 600, 607 ], [ 607, 608 ], [ 593, 609 ], [ 609, 610 ], [ 610, 611 ], [ 611, 612 ], [ 612, 613 ], [ 613, 614 ], [ 611, 615 ], [ 610, 616 ], [ 616, 617 ], [ 616, 618 ], [ 609, 619 ], [ 619, 620 ], [ 593, 621 ], [ 621, 622 ], [ 621, 623 ], [ 623, 624 ], [ 623, 625 ], [ 623, 626 ], [ 626, 627 ], [ 626, 628 ], [ 628, 629 ], [ 628, 630 ], [ 623, 631 ], [ 631, 632 ], [ 631, 633 ], [ 593, 634 ], [ 634, 635 ], [ 634, 636 ], [ 636, 637 ], [ 636, 638 ], [ 636, 639 ], [ 636, 640 ], [ 640, 641 ], [ 640, 642 ], [ 593, 643 ], [ 643, 644 ], [ 644, 645 ], [ 645, 646 ], [ 646, 647 ], [ 644, 648 ], [ 643, 649 ], [ 649, 650 ], [ 593, 651 ], [ 651, 652 ], [ 591, 653 ], [ 653, 654 ], [ 591, 655 ], [ 655, 656 ], [ 591, 657 ], [ 657, 658 ], [ 915, 659 ], [ 659, 660 ], [ 659, 661 ], [ 661, 662 ], [ 662, 663 ], [ 663, 664 ], [ 664, 665 ], [ 664, 666 ], [ 663, 667 ], [ 667, 668 ], [ 668, 669 ], [ 668, 670 ], [ 667, 671 ], [ 662, 672 ], [ 672, 673 ], [ 661, 674 ], [ 674, 675 ], [ 674, 676 ], [ 661, 677 ], [ 677, 678 ], [ 677, 679 ], [ 661, 680 ], [ 680, 681 ], [ 681, 682 ], [ 682, 683 ], [ 682, 684 ], [ 681, 685 ], [ 680, 686 ], [ 686, 687 ], [ 686, 688 ], [ 688, 689 ], [ 689, 690 ], [ 689, 691 ], [ 689, 692 ], [ 692, 693 ], [ 692, 694 ], [ 689, 695 ], [ 689, 696 ], [ 688, 697 ], [ 680, 698 ], [ 698, 699 ], [ 699, 700 ], [ 700, 701 ], [ 700, 702 ], [ 699, 703 ], [ 698, 704 ], [ 704, 705 ], [ 704, 706 ], [ 706, 707 ], [ 707, 708 ], [ 707, 709 ], [ 707, 710 ], [ 707, 711 ], [ 711, 712 ], [ 711, 713 ], [ 707, 714 ], [ 706, 715 ], [ 661, 716 ], [ 716, 717 ], [ 717, 718 ], [ 717, 719 ], [ 659, 720 ], [ 720, 721 ], [ 659, 722 ], [ 722, 723 ], [ 659, 724 ], [ 724, 725 ], [ 659, 726 ], [ 726, 727 ], [ 915, 728 ], [ 728, 729 ], [ 728, 730 ], [ 730, 731 ], [ 731, 732 ], [ 732, 733 ], [ 733, 734 ], [ 732, 735 ], [ 735, 736 ], [ 735, 737 ], [ 731, 738 ], [ 738, 739 ], [ 730, 740 ], [ 740, 741 ], [ 740, 742 ], [ 742, 743 ], [ 742, 744 ], [ 730, 745 ], [ 745, 746 ], [ 745, 747 ], [ 747, 748 ], [ 747, 749 ], [ 730, 750 ], [ 750, 751 ], [ 750, 752 ], [ 752, 753 ], [ 752, 754 ], [ 730, 755 ], [ 755, 756 ], [ 756, 757 ], [ 757, 758 ], [ 758, 759 ], [ 759, 760 ], [ 760, 761 ], [ 759, 762 ], [ 762, 763 ], [ 763, 764 ], [ 762, 765 ], [ 757, 766 ], [ 766, 767 ], [ 766, 768 ], [ 756, 769 ], [ 755, 770 ], [ 770, 771 ], [ 770, 772 ], [ 772, 773 ], [ 772, 774 ], [ 774, 775 ], [ 775, 776 ], [ 774, 777 ], [ 777, 778 ], [ 778, 779 ], [ 777, 780 ], [ 772, 781 ], [ 781, 782 ], [ 781, 783 ], [ 755, 784 ], [ 784, 785 ], [ 785, 786 ], [ 786, 787 ], [ 787, 788 ], [ 788, 789 ], [ 789, 790 ], [ 788, 791 ], [ 791, 792 ], [ 792, 793 ], [ 791, 794 ], [ 786, 795 ], [ 795, 796 ], [ 795, 797 ], [ 785, 798 ], [ 784, 799 ], [ 799, 800 ], [ 799, 801 ], [ 801, 802 ], [ 801, 803 ], [ 803, 804 ], [ 804, 805 ], [ 805, 806 ], [ 806, 807 ], [ 805, 808 ], [ 808, 809 ], [ 809, 810 ], [ 808, 811 ], [ 803, 812 ], [ 812, 813 ], [ 813, 814 ], [ 812, 815 ], [ 801, 816 ], [ 816, 817 ], [ 816, 818 ], [ 784, 819 ], [ 819, 820 ], [ 820, 821 ], [ 821, 822 ], [ 822, 823 ], [ 823, 824 ], [ 824, 825 ], [ 823, 826 ], [ 826, 827 ], [ 827, 828 ], [ 826, 829 ], [ 821, 830 ], [ 830, 831 ], [ 830, 832 ], [ 820, 833 ], [ 819, 834 ], [ 834, 835 ], [ 834, 836 ], [ 836, 837 ], [ 836, 838 ], [ 838, 839 ], [ 839, 840 ], [ 840, 841 ], [ 841, 842 ], [ 840, 843 ], [ 843, 844 ], [ 844, 845 ], [ 843, 846 ], [ 838, 847 ], [ 847, 848 ], [ 848, 849 ], [ 847, 850 ], [ 836, 851 ], [ 851, 852 ], [ 851, 853 ], [ 730, 854 ], [ 854, 855 ], [ 855, 856 ], [ 856, 857 ], [ 855, 858 ], [ 854, 859 ], [ 859, 860 ], [ 860, 861 ], [ 861, 862 ], [ 860, 863 ], [ 730, 864 ], [ 864, 865 ], [ 865, 866 ], [ 864, 867 ], [ 864, 868 ], [ 868, 869 ], [ 869, 870 ], [ 868, 871 ], [ 868, 872 ], [ 872, 873 ], [ 873, 874 ], [ 872, 875 ], [ 872, 876 ], [ 730, 877 ], [ 877, 878 ], [ 878, 879 ], [ 879, 880 ], [ 878, 881 ], [ 878, 882 ], [ 882, 883 ], [ 883, 884 ], [ 882, 885 ], [ 882, 886 ], [ 728, 887 ], [ 887, 888 ], [ 728, 889 ], [ 889, 890 ], [ 915, 891 ], [ 891, 892 ], [ 891, 893 ], [ 893, 894 ], [ 891, 895 ], [ 895, 896 ], [ 891, 897 ], [ 897, 898 ], [ 897, 899 ], [ 899, 900 ], [ 900, 901 ], [ 901, 902 ], [ 901, 903 ], [ 900, 904 ], [ 899, 905 ], [ 905, 906 ], [ 906, 907 ], [ 906, 908 ], [ 905, 909 ], [ 897, 910 ], [ 910, 911 ], [ 897, 912 ], [ 912, 913 ], [ 0, 914 ], [ 914, 915 ], [ 914, 916 ] ]
[ "\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.math.BigInteger;\nimport java.util.*;\n\npublic class Main {\n static Map<BigInteger, Integer> memo;\n static boolean[][] vis;\n static List<List<Integer>> adj;\n static List<Integer> vertices;\n\n static class Point {\n int i, j;\n\n public Point(int i, int j) {\n this.i = i;\n this.j = j;\n }\n }\n\n //# North, South, East and West direction vectors\n//dr = [-1, +1, 0, 0]\n//dc = [0, 0, +1, -1]\n static int[][][] cache;\n static Map<Integer, Integer> memo2;\n\n void UVA_11407() throws IOException {\n Scanner sc = new Scanner(System.in);\n BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(bf.readLine());\n StringBuilder sb = new StringBuilder();\n int t = Integer.parseInt(st.nextToken());\n while (t-- > 0) {\n st = new StringTokenizer(bf.readLine());\n int n = Integer.parseInt(st.nextToken());\n memo2 = new HashMap<>();\n sb.append(countTerm(n, 0, 0)).append(\"\\n\");\n }\n System.out.print(sb);\n }\n\n public static void main(String[] args) throws IOException {\n Scanner sc = new Scanner(System.in);\n\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n\n\n\n }\n\n static boolean checkEmpty(String word,String res) {\n if (word.equals(\"\"))\n return true;\n\n int count = 1;\n for (int i = 1; i < word.length(); ++i) {\n if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }\n }\n if (res.length() >= 1)\n res += word.charAt(word.length() - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n return false;\n }\n\n\n static int countTerm(int n, int i, int count) {\n if (i > n)\n return Integer.MAX_VALUE;\n\n if (i == n)\n return count;\n\n// if (memo2.get(i) != null)\n// return memo2.get(i);\n\n int ret, min = Integer.MAX_VALUE;\n\n for (int j = 1; j <= n; ++j) {\n ret = countTerm(n, i + j * j, count + 1);\n min = Math.min(min, ret);\n }\n\n memo2.put(i, count);\n return min;\n }\n\n\n static int countStrings(char[] arr, int i, int s, int l, String concat) {\n if (i >= arr.length) {\n return 0;\n }\n if (l == 0) {\n int sum = 0;\n for (int j = 0; j < concat.length() - 1; ++j) {\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }\n for (int j = 0; j < concat.length(); ++j) {\n sum += concat.charAt(j) - 'a' + 1;\n }\n if (sum == s)\n return 1;\n return 0;\n }\n if (l < 0)\n return 0;\n\n\n int left = countStrings(arr, i + 1, s, l - 1, concat + arr[i]);\n int right = countStrings(arr, i + 1, s, l, concat);\n\n return left + right;\n }\n\n static void countMoves(Point[][] grid, int start, int end, int start2, int end2, boolean[][] vis, int sumRed, int sumBlue) {\n if (start >= grid.length || start < 0 || end >= grid[0].length || end < 0)\n return;\n\n // countMoves(grid,start+1,end,start2,end2,vis,sumRed+grid[start][end].i,sumB);\n\n }\n\n\n static long countWin(long h) {\n if (h == 1)\n return 1;\n\n return 2 * countWin(h / 2) + 1;\n\n }\n\n static int lowerBound(int[] arr, int element) {\n\n int low = 0, high = arr.length - 1, ans = 0;\n while (low <= high) {\n int mid = low + (high - low) / 2;\n if (arr[mid] <= element) {\n low = mid + 1;\n ans = mid;\n } else\n high = mid - 1;\n\n }\n\n return high;\n }\n\n static boolean isPalindrome(String word) {\n int i = 0, j = word.length() - 1;\n\n while (i <= j) {\n if (word.charAt(i++) != word.charAt(j--))\n return false;\n }\n\n return true;\n }\n\n static String longestPalindrome(String[] words, String word, int i) {\n if (i >= words.length) {\n if (isPalindrome(word))\n return word;\n\n return \"\";\n }\n\n if (word.length() > 0 && isPalindrome(word))\n return word;\n String left = longestPalindrome(words, word + words[i], i + 1);\n String right = longestPalindrome(words, word, i + 1);\n\n if (left.length() > 0)\n return left;\n return right;\n }\n\n\n static int solve(int[] arr, int i, int j, int k) {\n if (i == j && arr[i] <= k)\n return 1;\n\n int left = 0, right = 0;\n if (arr[i] <= k)\n left = solve(arr, i + 1, j, k) + 1;\n\n else if (arr[j] <= k)\n right = solve(arr, i, j - 1, k) + 1;\n\n return left + right;\n }\n\n static int minMove(BigInteger bg, int count) {\n if (bg.equals(BigInteger.ONE))\n return count;\n\n int first = Integer.MAX_VALUE, sec = Integer.MAX_VALUE, last = Integer.MAX_VALUE;\n if (bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO) == 0)\n first = minMove(bg.divide(BigInteger.valueOf(2)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0)\n sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0)\n last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1);\n\n if (memo.containsKey(bg))\n return memo.get(bg);\n\n memo.put(bg, Math.min(first, Math.min(sec, last)));\n\n return Math.min(first, Math.min(sec, last));\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.math.BigInteger;", "BigInteger", "java.math", "import java.util.*;", "util.*", "java", "public class Main {\n static Map<BigInteger, Integer> memo;\n static boolean[][] vis;\n static List<List<Integer>> adj;\n static List<Integer> vertices;\n\n static class Point {\n int i, j;\n\n public Point(int i, int j) {\n this.i = i;\n this.j = j;\n }\n }\n\n //# North, South, East and West direction vectors\n//dr = [-1, +1, 0, 0]\n//dc = [0, 0, +1, -1]\n static int[][][] cache;\n static Map<Integer, Integer> memo2;\n\n void UVA_11407() throws IOException {\n Scanner sc = new Scanner(System.in);\n BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(bf.readLine());\n StringBuilder sb = new StringBuilder();\n int t = Integer.parseInt(st.nextToken());\n while (t-- > 0) {\n st = new StringTokenizer(bf.readLine());\n int n = Integer.parseInt(st.nextToken());\n memo2 = new HashMap<>();\n sb.append(countTerm(n, 0, 0)).append(\"\\n\");\n }\n System.out.print(sb);\n }\n\n public static void main(String[] args) throws IOException {\n Scanner sc = new Scanner(System.in);\n\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n\n\n\n }\n\n static boolean checkEmpty(String word,String res) {\n if (word.equals(\"\"))\n return true;\n\n int count = 1;\n for (int i = 1; i < word.length(); ++i) {\n if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }\n }\n if (res.length() >= 1)\n res += word.charAt(word.length() - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n return false;\n }\n\n\n static int countTerm(int n, int i, int count) {\n if (i > n)\n return Integer.MAX_VALUE;\n\n if (i == n)\n return count;\n\n// if (memo2.get(i) != null)\n// return memo2.get(i);\n\n int ret, min = Integer.MAX_VALUE;\n\n for (int j = 1; j <= n; ++j) {\n ret = countTerm(n, i + j * j, count + 1);\n min = Math.min(min, ret);\n }\n\n memo2.put(i, count);\n return min;\n }\n\n\n static int countStrings(char[] arr, int i, int s, int l, String concat) {\n if (i >= arr.length) {\n return 0;\n }\n if (l == 0) {\n int sum = 0;\n for (int j = 0; j < concat.length() - 1; ++j) {\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }\n for (int j = 0; j < concat.length(); ++j) {\n sum += concat.charAt(j) - 'a' + 1;\n }\n if (sum == s)\n return 1;\n return 0;\n }\n if (l < 0)\n return 0;\n\n\n int left = countStrings(arr, i + 1, s, l - 1, concat + arr[i]);\n int right = countStrings(arr, i + 1, s, l, concat);\n\n return left + right;\n }\n\n static void countMoves(Point[][] grid, int start, int end, int start2, int end2, boolean[][] vis, int sumRed, int sumBlue) {\n if (start >= grid.length || start < 0 || end >= grid[0].length || end < 0)\n return;\n\n // countMoves(grid,start+1,end,start2,end2,vis,sumRed+grid[start][end].i,sumB);\n\n }\n\n\n static long countWin(long h) {\n if (h == 1)\n return 1;\n\n return 2 * countWin(h / 2) + 1;\n\n }\n\n static int lowerBound(int[] arr, int element) {\n\n int low = 0, high = arr.length - 1, ans = 0;\n while (low <= high) {\n int mid = low + (high - low) / 2;\n if (arr[mid] <= element) {\n low = mid + 1;\n ans = mid;\n } else\n high = mid - 1;\n\n }\n\n return high;\n }\n\n static boolean isPalindrome(String word) {\n int i = 0, j = word.length() - 1;\n\n while (i <= j) {\n if (word.charAt(i++) != word.charAt(j--))\n return false;\n }\n\n return true;\n }\n\n static String longestPalindrome(String[] words, String word, int i) {\n if (i >= words.length) {\n if (isPalindrome(word))\n return word;\n\n return \"\";\n }\n\n if (word.length() > 0 && isPalindrome(word))\n return word;\n String left = longestPalindrome(words, word + words[i], i + 1);\n String right = longestPalindrome(words, word, i + 1);\n\n if (left.length() > 0)\n return left;\n return right;\n }\n\n\n static int solve(int[] arr, int i, int j, int k) {\n if (i == j && arr[i] <= k)\n return 1;\n\n int left = 0, right = 0;\n if (arr[i] <= k)\n left = solve(arr, i + 1, j, k) + 1;\n\n else if (arr[j] <= k)\n right = solve(arr, i, j - 1, k) + 1;\n\n return left + right;\n }\n\n static int minMove(BigInteger bg, int count) {\n if (bg.equals(BigInteger.ONE))\n return count;\n\n int first = Integer.MAX_VALUE, sec = Integer.MAX_VALUE, last = Integer.MAX_VALUE;\n if (bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO) == 0)\n first = minMove(bg.divide(BigInteger.valueOf(2)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0)\n sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0)\n last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1);\n\n if (memo.containsKey(bg))\n return memo.get(bg);\n\n memo.put(bg, Math.min(first, Math.min(sec, last)));\n\n return Math.min(first, Math.min(sec, last));\n }\n}", "Main", "static Map<BigInteger, Integer> memo;", "memo", "static boolean[][] vis;", "vis", "static List<List<Integer>> adj;", "adj", "static List<Integer> vertices;", "vertices", "//# North, South, East and West direction vectors\n//dr = [-1, +1, 0, 0]\n//dc = [0, 0, +1, -1]\n static int[][][] cache;", "cache", "static Map<Integer, Integer> memo2;", "memo2", "void UVA_11407() throws IOException {\n Scanner sc = new Scanner(System.in);\n BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(bf.readLine());\n StringBuilder sb = new StringBuilder();\n int t = Integer.parseInt(st.nextToken());\n while (t-- > 0) {\n st = new StringTokenizer(bf.readLine());\n int n = Integer.parseInt(st.nextToken());\n memo2 = new HashMap<>();\n sb.append(countTerm(n, 0, 0)).append(\"\\n\");\n }\n System.out.print(sb);\n }", "UVA_11407", "{\n Scanner sc = new Scanner(System.in);\n BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(bf.readLine());\n StringBuilder sb = new StringBuilder();\n int t = Integer.parseInt(st.nextToken());\n while (t-- > 0) {\n st = new StringTokenizer(bf.readLine());\n int n = Integer.parseInt(st.nextToken());\n memo2 = new HashMap<>();\n sb.append(countTerm(n, 0, 0)).append(\"\\n\");\n }\n System.out.print(sb);\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));", "bf", "new BufferedReader(new InputStreamReader(System.in))", "StringTokenizer st = new StringTokenizer(bf.readLine());", "st", "new StringTokenizer(bf.readLine())", "StringBuilder sb = new StringBuilder();", "sb", "new StringBuilder()", "int t = Integer.parseInt(st.nextToken());", "t", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "while (t-- > 0) {\n st = new StringTokenizer(bf.readLine());\n int n = Integer.parseInt(st.nextToken());\n memo2 = new HashMap<>();\n sb.append(countTerm(n, 0, 0)).append(\"\\n\");\n }", "t-- > 0", "t--", "t", "0", "{\n st = new StringTokenizer(bf.readLine());\n int n = Integer.parseInt(st.nextToken());\n memo2 = new HashMap<>();\n sb.append(countTerm(n, 0, 0)).append(\"\\n\");\n }", "st = new StringTokenizer(bf.readLine())", "st", "new StringTokenizer(bf.readLine())", "int n = Integer.parseInt(st.nextToken());", "n", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "memo2 = new HashMap<>()", "memo2", "new HashMap<>()", "sb.append(countTerm(n, 0, 0)).append(\"\\n\")", "sb.append(countTerm(n, 0, 0)).append", "sb.append(countTerm(n, 0, 0))", "sb.append", "sb", "countTerm(n, 0, 0)", "countTerm", "n", "0", "0", "\"\\n\"", "System.out.print(sb)", "System.out.print", "System.out", "System", "System.out", "sb", "public static void main(String[] args) throws IOException {\n Scanner sc = new Scanner(System.in);\n\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n\n\n\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n\n\n\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int n = sc.nextInt();", "n", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println(n == 1 ? 0 : 1)", "System.out.println", "System.out", "System", "System.out", "n == 1 ? 0 : 1", "n == 1", "n", "1", "0", "1", "String[] args", "args", "static boolean checkEmpty(String word,String res) {\n if (word.equals(\"\"))\n return true;\n\n int count = 1;\n for (int i = 1; i < word.length(); ++i) {\n if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }\n }\n if (res.length() >= 1)\n res += word.charAt(word.length() - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n return false;\n }", "checkEmpty", "{\n if (word.equals(\"\"))\n return true;\n\n int count = 1;\n for (int i = 1; i < word.length(); ++i) {\n if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }\n }\n if (res.length() >= 1)\n res += word.charAt(word.length() - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n return false;\n }", "if (word.equals(\"\"))\n return true;", "word.equals(\"\")", "word.equals", "word", "\"\"", "return true;", "true", "int count = 1;", "count", "1", "for (int i = 1; i < word.length(); ++i) {\n if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }\n }", "int i = 1;", "int i = 1;", "i", "1", "i < word.length()", "i", "word.length()", "word.length", "word", "++i", "++i", "i", "{\n if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }\n }", "{\n if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }\n }", "if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }", "word.charAt(i) == word.charAt(i - 1)", "word.charAt(i)", "word.charAt", "word", "i", "word.charAt(i - 1)", "word.charAt", "word", "i - 1", "i", "1", "{\n count++;\n res += word.charAt(i);\n }", "count++", "count", "res += word.charAt(i)", "res", "word.charAt(i)", "word.charAt", "word", "i", "{\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }", "if (res.length() >= 1)\n res += word.charAt(i - 1);", "res.length() >= 1", "res.length()", "res.length", "res", "1", "res += word.charAt(i - 1)", "res", "word.charAt(i - 1)", "word.charAt", "word", "i - 1", "i", "1", "if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }", "count >= 2", "count", "2", "{\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }", "word = word.replace(res, \"\")", "word", "word.replace(res, \"\")", "word.replace", "word", "res", "\"\"", "return checkEmpty(word,\"\");", "checkEmpty(word,\"\")", "checkEmpty", "word", "\"\"", "if (res.length() >= 1)\n res += word.charAt(word.length() - 1);", "res.length() >= 1", "res.length()", "res.length", "res", "1", "res += word.charAt(word.length() - 1)", "res", "word.charAt(word.length() - 1)", "word.charAt", "word", "word.length() - 1", "word.length()", "word.length", "word", "1", "if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }", "count >= 2", "count", "2", "{\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }", "word = word.replace(res, \"\")", "word", "word.replace(res, \"\")", "word.replace", "word", "res", "\"\"", "return checkEmpty(word,\"\");", "checkEmpty(word,\"\")", "checkEmpty", "word", "\"\"", "return false;", "false", "String word", "word", "String res", "res", "static int countTerm(int n, int i, int count) {\n if (i > n)\n return Integer.MAX_VALUE;\n\n if (i == n)\n return count;\n\n// if (memo2.get(i) != null)\n// return memo2.get(i);\n\n int ret, min = Integer.MAX_VALUE;\n\n for (int j = 1; j <= n; ++j) {\n ret = countTerm(n, i + j * j, count + 1);\n min = Math.min(min, ret);\n }\n\n memo2.put(i, count);\n return min;\n }", "countTerm", "{\n if (i > n)\n return Integer.MAX_VALUE;\n\n if (i == n)\n return count;\n\n// if (memo2.get(i) != null)\n// return memo2.get(i);\n\n int ret, min = Integer.MAX_VALUE;\n\n for (int j = 1; j <= n; ++j) {\n ret = countTerm(n, i + j * j, count + 1);\n min = Math.min(min, ret);\n }\n\n memo2.put(i, count);\n return min;\n }", "if (i > n)\n return Integer.MAX_VALUE;", "i > n", "i", "n", "return Integer.MAX_VALUE;", "Integer.MAX_VALUE", "Integer", "Integer.MAX_VALUE", "if (i == n)\n return count;", "i == n", "i", "n", "return count;", "count", "int ret", "ret", "min = Integer.MAX_VALUE;", "min", "Integer.MAX_VALUE", "Integer", "Integer.MAX_VALUE", "for (int j = 1; j <= n; ++j) {\n ret = countTerm(n, i + j * j, count + 1);\n min = Math.min(min, ret);\n }", "int j = 1;", "int j = 1;", "j", "1", "j <= n", "j", "n", "++j", "++j", "j", "{\n ret = countTerm(n, i + j * j, count + 1);\n min = Math.min(min, ret);\n }", "{\n ret = countTerm(n, i + j * j, count + 1);\n min = Math.min(min, ret);\n }", "ret = countTerm(n, i + j * j, count + 1)", "ret", "countTerm(n, i + j * j, count + 1)", "countTerm", "n", "i + j * j", "i", "j * j", "j", "j", "count + 1", "count", "1", "min = Math.min(min, ret)", "min", "Math.min(min, ret)", "Math.min", "Math", "min", "ret", "memo2.put(i, count)", "memo2.put", "memo2", "i", "count", "return min;", "min", "int n", "n", "int i", "i", "int count", "count", "static int countStrings(char[] arr, int i, int s, int l, String concat) {\n if (i >= arr.length) {\n return 0;\n }\n if (l == 0) {\n int sum = 0;\n for (int j = 0; j < concat.length() - 1; ++j) {\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }\n for (int j = 0; j < concat.length(); ++j) {\n sum += concat.charAt(j) - 'a' + 1;\n }\n if (sum == s)\n return 1;\n return 0;\n }\n if (l < 0)\n return 0;\n\n\n int left = countStrings(arr, i + 1, s, l - 1, concat + arr[i]);\n int right = countStrings(arr, i + 1, s, l, concat);\n\n return left + right;\n }", "countStrings", "{\n if (i >= arr.length) {\n return 0;\n }\n if (l == 0) {\n int sum = 0;\n for (int j = 0; j < concat.length() - 1; ++j) {\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }\n for (int j = 0; j < concat.length(); ++j) {\n sum += concat.charAt(j) - 'a' + 1;\n }\n if (sum == s)\n return 1;\n return 0;\n }\n if (l < 0)\n return 0;\n\n\n int left = countStrings(arr, i + 1, s, l - 1, concat + arr[i]);\n int right = countStrings(arr, i + 1, s, l, concat);\n\n return left + right;\n }", "if (i >= arr.length) {\n return 0;\n }", "i >= arr.length", "i", "arr.length", "arr", "arr.length", "{\n return 0;\n }", "return 0;", "0", "if (l == 0) {\n int sum = 0;\n for (int j = 0; j < concat.length() - 1; ++j) {\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }\n for (int j = 0; j < concat.length(); ++j) {\n sum += concat.charAt(j) - 'a' + 1;\n }\n if (sum == s)\n return 1;\n return 0;\n }", "l == 0", "l", "0", "{\n int sum = 0;\n for (int j = 0; j < concat.length() - 1; ++j) {\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }\n for (int j = 0; j < concat.length(); ++j) {\n sum += concat.charAt(j) - 'a' + 1;\n }\n if (sum == s)\n return 1;\n return 0;\n }", "int sum = 0;", "sum", "0", "for (int j = 0; j < concat.length() - 1; ++j) {\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }", "int j = 0;", "int j = 0;", "j", "0", "j < concat.length() - 1", "j", "concat.length() - 1", "concat.length()", "concat.length", "concat", "1", "++j", "++j", "j", "{\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }", "{\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }", "if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;", "concat.charAt(j) > concat.charAt(j + 1)", "concat.charAt(j)", "concat.charAt", "concat", "j", "concat.charAt(j + 1)", "concat.charAt", "concat", "j + 1", "j", "1", "return 0;", "0", "for (int j = 0; j < concat.length(); ++j) {\n sum += concat.charAt(j) - 'a' + 1;\n }", "int j = 0;", "int j = 0;", "j", "0", "j < concat.length()", "j", "concat.length()", "concat.length", "concat", "++j", "++j", "j", "{\n sum += concat.charAt(j) - 'a' + 1;\n }", "{\n sum += concat.charAt(j) - 'a' + 1;\n }", "sum += concat.charAt(j) - 'a' + 1", "sum", "concat.charAt(j) - 'a' + 1", "concat.charAt(j) - 'a'", "concat.charAt(j)", "concat.charAt", "concat", "j", "'a'", "1", "if (sum == s)\n return 1;", "sum == s", "sum", "s", "return 1;", "1", "return 0;", "0", "if (l < 0)\n return 0;", "l < 0", "l", "0", "return 0;", "0", "int left = countStrings(arr, i + 1, s, l - 1, concat + arr[i]);", "left", "countStrings(arr, i + 1, s, l - 1, concat + arr[i])", "countStrings", "arr", "i + 1", "i", "1", "s", "l - 1", "l", "1", "concat + arr[i]", "concat", "arr[i]", "arr", "i", "int right = countStrings(arr, i + 1, s, l, concat);", "right", "countStrings(arr, i + 1, s, l, concat)", "countStrings", "arr", "i + 1", "i", "1", "s", "l", "concat", "return left + right;", "left + right", "left", "right", "char[] arr", "arr", "int i", "i", "int s", "s", "int l", "l", "String concat", "concat", "static void countMoves(Point[][] grid, int start, int end, int start2, int end2, boolean[][] vis, int sumRed, int sumBlue) {\n if (start >= grid.length || start < 0 || end >= grid[0].length || end < 0)\n return;\n\n // countMoves(grid,start+1,end,start2,end2,vis,sumRed+grid[start][end].i,sumB);\n\n }", "countMoves", "{\n if (start >= grid.length || start < 0 || end >= grid[0].length || end < 0)\n return;\n\n // countMoves(grid,start+1,end,start2,end2,vis,sumRed+grid[start][end].i,sumB);\n\n }", "if (start >= grid.length || start < 0 || end >= grid[0].length || end < 0)\n return;", "start >= grid.length || start < 0 || end >= grid[0].length || end < 0", "end >= grid[0].length", "start >= grid.length || start < 0 || end >= grid[0].length || end < 0", "start >= grid.length", "start", "grid.length", "grid", "grid.length", "start < 0", "start", "0", "end >= grid[0].length", "end", "grid[0].length", "grid[0]", "grid", "0", "grid[0].length", "end < 0", "end", "0", "return;", "Point[][] grid", "grid", "int start", "start", "int end", "end", "int start2", "start2", "int end2", "end2", "boolean[][] vis", "vis", "int sumRed", "sumRed", "int sumBlue", "sumBlue", "static long countWin(long h) {\n if (h == 1)\n return 1;\n\n return 2 * countWin(h / 2) + 1;\n\n }", "countWin", "{\n if (h == 1)\n return 1;\n\n return 2 * countWin(h / 2) + 1;\n\n }", "if (h == 1)\n return 1;", "h == 1", "h", "1", "return 1;", "1", "return 2 * countWin(h / 2) + 1;", "2 * countWin(h / 2) + 1", "2 * countWin(h / 2)", "2", "countWin(h / 2)", "countWin", "h / 2", "h", "2", "1", "long h", "h", "static int lowerBound(int[] arr, int element) {\n\n int low = 0, high = arr.length - 1, ans = 0;\n while (low <= high) {\n int mid = low + (high - low) / 2;\n if (arr[mid] <= element) {\n low = mid + 1;\n ans = mid;\n } else\n high = mid - 1;\n\n }\n\n return high;\n }", "lowerBound", "{\n\n int low = 0, high = arr.length - 1, ans = 0;\n while (low <= high) {\n int mid = low + (high - low) / 2;\n if (arr[mid] <= element) {\n low = mid + 1;\n ans = mid;\n } else\n high = mid - 1;\n\n }\n\n return high;\n }", "int low = 0", "low", "0", "high = arr.length - 1", "high", "arr.length - 1", "arr.length", "arr", "arr.length", "1", "ans = 0;", "ans", "0", "while (low <= high) {\n int mid = low + (high - low) / 2;\n if (arr[mid] <= element) {\n low = mid + 1;\n ans = mid;\n } else\n high = mid - 1;\n\n }", "low <= high", "low", "high", "{\n int mid = low + (high - low) / 2;\n if (arr[mid] <= element) {\n low = mid + 1;\n ans = mid;\n } else\n high = mid - 1;\n\n }", "int mid = low + (high - low) / 2;", "mid", "low + (high - low) / 2", "low", "(high - low) / 2", "(high - low)", "high", "low", "2", "if (arr[mid] <= element) {\n low = mid + 1;\n ans = mid;\n } else\n high = mid - 1;", "arr[mid] <= element", "arr[mid]", "arr", "mid", "element", "{\n low = mid + 1;\n ans = mid;\n }", "low = mid + 1", "low", "mid + 1", "mid", "1", "ans = mid", "ans", "mid", "high = mid - 1", "high", "mid - 1", "mid", "1", "return high;", "high", "int[] arr", "arr", "int element", "element", "static boolean isPalindrome(String word) {\n int i = 0, j = word.length() - 1;\n\n while (i <= j) {\n if (word.charAt(i++) != word.charAt(j--))\n return false;\n }\n\n return true;\n }", "isPalindrome", "{\n int i = 0, j = word.length() - 1;\n\n while (i <= j) {\n if (word.charAt(i++) != word.charAt(j--))\n return false;\n }\n\n return true;\n }", "int i = 0", "i", "0", "j = word.length() - 1;", "j", "word.length() - 1", "word.length()", "word.length", "word", "1", "while (i <= j) {\n if (word.charAt(i++) != word.charAt(j--))\n return false;\n }", "i <= j", "i", "j", "{\n if (word.charAt(i++) != word.charAt(j--))\n return false;\n }", "if (word.charAt(i++) != word.charAt(j--))\n return false;", "word.charAt(i++) != word.charAt(j--)", "word.charAt(i++)", "word.charAt", "word", "i++", "i", "word.charAt(j--)", "word.charAt", "word", "j--", "j", "return false;", "false", "return true;", "true", "String word", "word", "static String longestPalindrome(String[] words, String word, int i) {\n if (i >= words.length) {\n if (isPalindrome(word))\n return word;\n\n return \"\";\n }\n\n if (word.length() > 0 && isPalindrome(word))\n return word;\n String left = longestPalindrome(words, word + words[i], i + 1);\n String right = longestPalindrome(words, word, i + 1);\n\n if (left.length() > 0)\n return left;\n return right;\n }", "longestPalindrome", "{\n if (i >= words.length) {\n if (isPalindrome(word))\n return word;\n\n return \"\";\n }\n\n if (word.length() > 0 && isPalindrome(word))\n return word;\n String left = longestPalindrome(words, word + words[i], i + 1);\n String right = longestPalindrome(words, word, i + 1);\n\n if (left.length() > 0)\n return left;\n return right;\n }", "if (i >= words.length) {\n if (isPalindrome(word))\n return word;\n\n return \"\";\n }", "i >= words.length", "i", "words.length", "words", "words.length", "{\n if (isPalindrome(word))\n return word;\n\n return \"\";\n }", "if (isPalindrome(word))\n return word;", "isPalindrome(word)", "isPalindrome", "word", "return word;", "word", "return \"\";", "\"\"", "if (word.length() > 0 && isPalindrome(word))\n return word;", "word.length() > 0 && isPalindrome(word)", "word.length() > 0", "word.length()", "word.length", "word", "0", "isPalindrome(word)", "isPalindrome", "word", "return word;", "word", "String left = longestPalindrome(words, word + words[i], i + 1);", "left", "longestPalindrome(words, word + words[i], i + 1)", "longestPalindrome", "words", "word + words[i]", "word", "words[i]", "words", "i", "i + 1", "i", "1", "String right = longestPalindrome(words, word, i + 1);", "right", "longestPalindrome(words, word, i + 1)", "longestPalindrome", "words", "word", "i + 1", "i", "1", "if (left.length() > 0)\n return left;", "left.length() > 0", "left.length()", "left.length", "left", "0", "return left;", "left", "return right;", "right", "String[] words", "words", "String word", "word", "int i", "i", "static int solve(int[] arr, int i, int j, int k) {\n if (i == j && arr[i] <= k)\n return 1;\n\n int left = 0, right = 0;\n if (arr[i] <= k)\n left = solve(arr, i + 1, j, k) + 1;\n\n else if (arr[j] <= k)\n right = solve(arr, i, j - 1, k) + 1;\n\n return left + right;\n }", "solve", "{\n if (i == j && arr[i] <= k)\n return 1;\n\n int left = 0, right = 0;\n if (arr[i] <= k)\n left = solve(arr, i + 1, j, k) + 1;\n\n else if (arr[j] <= k)\n right = solve(arr, i, j - 1, k) + 1;\n\n return left + right;\n }", "if (i == j && arr[i] <= k)\n return 1;", "i == j && arr[i] <= k", "i == j", "i", "j", "arr[i] <= k", "arr[i]", "arr", "i", "k", "return 1;", "1", "int left = 0", "left", "0", "right = 0;", "right", "0", "if (arr[i] <= k)\n left = solve(arr, i + 1, j, k) + 1;\n\n else if (arr[j] <= k)\n right = solve(arr, i, j - 1, k) + 1;", "arr[i] <= k", "arr[i]", "arr", "i", "k", "left = solve(arr, i + 1, j, k) + 1", "left", "solve(arr, i + 1, j, k) + 1", "solve(arr, i + 1, j, k)", "solve", "arr", "i + 1", "i", "1", "j", "k", "1", "if (arr[j] <= k)\n right = solve(arr, i, j - 1, k) + 1;", "arr[j] <= k", "arr[j]", "arr", "j", "k", "right = solve(arr, i, j - 1, k) + 1", "right", "solve(arr, i, j - 1, k) + 1", "solve(arr, i, j - 1, k)", "solve", "arr", "i", "j - 1", "j", "1", "k", "1", "return left + right;", "left + right", "left", "right", "int[] arr", "arr", "int i", "i", "int j", "j", "int k", "k", "static int minMove(BigInteger bg, int count) {\n if (bg.equals(BigInteger.ONE))\n return count;\n\n int first = Integer.MAX_VALUE, sec = Integer.MAX_VALUE, last = Integer.MAX_VALUE;\n if (bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO) == 0)\n first = minMove(bg.divide(BigInteger.valueOf(2)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0)\n sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0)\n last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1);\n\n if (memo.containsKey(bg))\n return memo.get(bg);\n\n memo.put(bg, Math.min(first, Math.min(sec, last)));\n\n return Math.min(first, Math.min(sec, last));\n }", "minMove", "{\n if (bg.equals(BigInteger.ONE))\n return count;\n\n int first = Integer.MAX_VALUE, sec = Integer.MAX_VALUE, last = Integer.MAX_VALUE;\n if (bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO) == 0)\n first = minMove(bg.divide(BigInteger.valueOf(2)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0)\n sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0)\n last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1);\n\n if (memo.containsKey(bg))\n return memo.get(bg);\n\n memo.put(bg, Math.min(first, Math.min(sec, last)));\n\n return Math.min(first, Math.min(sec, last));\n }", "if (bg.equals(BigInteger.ONE))\n return count;", "bg.equals(BigInteger.ONE)", "bg.equals", "bg", "BigInteger.ONE", "BigInteger", "BigInteger.ONE", "return count;", "count", "int first = Integer.MAX_VALUE", "first", "Integer.MAX_VALUE", "Integer", "Integer.MAX_VALUE", "sec = Integer.MAX_VALUE", "sec", "Integer.MAX_VALUE", "Integer", "Integer.MAX_VALUE", "last = Integer.MAX_VALUE;", "last", "Integer.MAX_VALUE", "Integer", "Integer.MAX_VALUE", "if (bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO) == 0)\n first = minMove(bg.divide(BigInteger.valueOf(2)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0)\n sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0)\n last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1);", "bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO) == 0", "bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO)", "bg.mod(BigInteger.valueOf(2)).compareTo", "bg.mod(BigInteger.valueOf(2))", "bg.mod", "bg", "BigInteger.valueOf(2)", "BigInteger.valueOf", "BigInteger", "2", "BigInteger.ZERO", "BigInteger", "BigInteger.ZERO", "0", "first = minMove(bg.divide(BigInteger.valueOf(2)), count + 1)", "first", "minMove(bg.divide(BigInteger.valueOf(2)), count + 1)", "minMove", "bg.divide(BigInteger.valueOf(2))", "bg.divide", "bg", "BigInteger.valueOf(2)", "BigInteger.valueOf", "BigInteger", "2", "count + 1", "count", "1", "if (bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0)\n sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0)\n last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1);", "bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0", "bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO)", "bg.mod(BigInteger.valueOf(3)).compareTo", "bg.mod(BigInteger.valueOf(3))", "bg.mod", "bg", "BigInteger.valueOf(3)", "BigInteger.valueOf", "BigInteger", "3", "BigInteger.ZERO", "BigInteger", "BigInteger.ZERO", "0", "sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1)", "sec", "minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1)", "minMove", "bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3))", "bg.multiply(BigInteger.valueOf(2)).divide", "bg.multiply(BigInteger.valueOf(2))", "bg.multiply", "bg", "BigInteger.valueOf(2)", "BigInteger.valueOf", "BigInteger", "2", "BigInteger.valueOf(3)", "BigInteger.valueOf", "BigInteger", "3", "count + 1", "count", "1", "if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0)\n last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1);", "bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0", "bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO)", "bg.mod(BigInteger.valueOf(5)).compareTo", "bg.mod(BigInteger.valueOf(5))", "bg.mod", "bg", "BigInteger.valueOf(5)", "BigInteger.valueOf", "BigInteger", "5", "BigInteger.ZERO", "BigInteger", "BigInteger.ZERO", "0", "last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1)", "last", "minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1)", "minMove", "bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5))", "bg.multiply(BigInteger.valueOf(4)).divide", "bg.multiply(BigInteger.valueOf(4))", "bg.multiply", "bg", "BigInteger.valueOf(4)", "BigInteger.valueOf", "BigInteger", "4", "BigInteger.valueOf(5)", "BigInteger.valueOf", "BigInteger", "5", "count + 1", "count", "1", "if (memo.containsKey(bg))\n return memo.get(bg);", "memo.containsKey(bg)", "memo.containsKey", "memo", "bg", "return memo.get(bg);", "memo.get(bg)", "memo.get", "memo", "bg", "memo.put(bg, Math.min(first, Math.min(sec, last)))", "memo.put", "memo", "bg", "Math.min(first, Math.min(sec, last))", "Math.min", "Math", "first", "Math.min(sec, last)", "Math.min", "Math", "sec", "last", "return Math.min(first, Math.min(sec, last));", "Math.min(first, Math.min(sec, last))", "Math.min", "Math", "first", "Math.min(sec, last)", "Math.min", "Math", "sec", "last", "BigInteger bg", "bg", "int count", "count", "static class Point {\n int i, j;\n\n public Point(int i, int j) {\n this.i = i;\n this.j = j;\n }\n }", "Point", "int i", "i", "j;", "j", "public Point(int i, int j) {\n this.i = i;\n this.j = j;\n }", "Point", "{\n this.i = i;\n this.j = j;\n }", "this.i = i", "this.i", "this", "this.i", "i", "this.j = j", "this.j", "this", "this.j", "j", "int i", "i", "int j", "j", "public class Main {\n static Map<BigInteger, Integer> memo;\n static boolean[][] vis;\n static List<List<Integer>> adj;\n static List<Integer> vertices;\n\n static class Point {\n int i, j;\n\n public Point(int i, int j) {\n this.i = i;\n this.j = j;\n }\n }\n\n //# North, South, East and West direction vectors\n//dr = [-1, +1, 0, 0]\n//dc = [0, 0, +1, -1]\n static int[][][] cache;\n static Map<Integer, Integer> memo2;\n\n void UVA_11407() throws IOException {\n Scanner sc = new Scanner(System.in);\n BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(bf.readLine());\n StringBuilder sb = new StringBuilder();\n int t = Integer.parseInt(st.nextToken());\n while (t-- > 0) {\n st = new StringTokenizer(bf.readLine());\n int n = Integer.parseInt(st.nextToken());\n memo2 = new HashMap<>();\n sb.append(countTerm(n, 0, 0)).append(\"\\n\");\n }\n System.out.print(sb);\n }\n\n public static void main(String[] args) throws IOException {\n Scanner sc = new Scanner(System.in);\n\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n\n\n\n }\n\n static boolean checkEmpty(String word,String res) {\n if (word.equals(\"\"))\n return true;\n\n int count = 1;\n for (int i = 1; i < word.length(); ++i) {\n if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }\n }\n if (res.length() >= 1)\n res += word.charAt(word.length() - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n return false;\n }\n\n\n static int countTerm(int n, int i, int count) {\n if (i > n)\n return Integer.MAX_VALUE;\n\n if (i == n)\n return count;\n\n// if (memo2.get(i) != null)\n// return memo2.get(i);\n\n int ret, min = Integer.MAX_VALUE;\n\n for (int j = 1; j <= n; ++j) {\n ret = countTerm(n, i + j * j, count + 1);\n min = Math.min(min, ret);\n }\n\n memo2.put(i, count);\n return min;\n }\n\n\n static int countStrings(char[] arr, int i, int s, int l, String concat) {\n if (i >= arr.length) {\n return 0;\n }\n if (l == 0) {\n int sum = 0;\n for (int j = 0; j < concat.length() - 1; ++j) {\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }\n for (int j = 0; j < concat.length(); ++j) {\n sum += concat.charAt(j) - 'a' + 1;\n }\n if (sum == s)\n return 1;\n return 0;\n }\n if (l < 0)\n return 0;\n\n\n int left = countStrings(arr, i + 1, s, l - 1, concat + arr[i]);\n int right = countStrings(arr, i + 1, s, l, concat);\n\n return left + right;\n }\n\n static void countMoves(Point[][] grid, int start, int end, int start2, int end2, boolean[][] vis, int sumRed, int sumBlue) {\n if (start >= grid.length || start < 0 || end >= grid[0].length || end < 0)\n return;\n\n // countMoves(grid,start+1,end,start2,end2,vis,sumRed+grid[start][end].i,sumB);\n\n }\n\n\n static long countWin(long h) {\n if (h == 1)\n return 1;\n\n return 2 * countWin(h / 2) + 1;\n\n }\n\n static int lowerBound(int[] arr, int element) {\n\n int low = 0, high = arr.length - 1, ans = 0;\n while (low <= high) {\n int mid = low + (high - low) / 2;\n if (arr[mid] <= element) {\n low = mid + 1;\n ans = mid;\n } else\n high = mid - 1;\n\n }\n\n return high;\n }\n\n static boolean isPalindrome(String word) {\n int i = 0, j = word.length() - 1;\n\n while (i <= j) {\n if (word.charAt(i++) != word.charAt(j--))\n return false;\n }\n\n return true;\n }\n\n static String longestPalindrome(String[] words, String word, int i) {\n if (i >= words.length) {\n if (isPalindrome(word))\n return word;\n\n return \"\";\n }\n\n if (word.length() > 0 && isPalindrome(word))\n return word;\n String left = longestPalindrome(words, word + words[i], i + 1);\n String right = longestPalindrome(words, word, i + 1);\n\n if (left.length() > 0)\n return left;\n return right;\n }\n\n\n static int solve(int[] arr, int i, int j, int k) {\n if (i == j && arr[i] <= k)\n return 1;\n\n int left = 0, right = 0;\n if (arr[i] <= k)\n left = solve(arr, i + 1, j, k) + 1;\n\n else if (arr[j] <= k)\n right = solve(arr, i, j - 1, k) + 1;\n\n return left + right;\n }\n\n static int minMove(BigInteger bg, int count) {\n if (bg.equals(BigInteger.ONE))\n return count;\n\n int first = Integer.MAX_VALUE, sec = Integer.MAX_VALUE, last = Integer.MAX_VALUE;\n if (bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO) == 0)\n first = minMove(bg.divide(BigInteger.valueOf(2)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0)\n sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0)\n last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1);\n\n if (memo.containsKey(bg))\n return memo.get(bg);\n\n memo.put(bg, Math.min(first, Math.min(sec, last)));\n\n return Math.min(first, Math.min(sec, last));\n }\n}", "public class Main {\n static Map<BigInteger, Integer> memo;\n static boolean[][] vis;\n static List<List<Integer>> adj;\n static List<Integer> vertices;\n\n static class Point {\n int i, j;\n\n public Point(int i, int j) {\n this.i = i;\n this.j = j;\n }\n }\n\n //# North, South, East and West direction vectors\n//dr = [-1, +1, 0, 0]\n//dc = [0, 0, +1, -1]\n static int[][][] cache;\n static Map<Integer, Integer> memo2;\n\n void UVA_11407() throws IOException {\n Scanner sc = new Scanner(System.in);\n BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st = new StringTokenizer(bf.readLine());\n StringBuilder sb = new StringBuilder();\n int t = Integer.parseInt(st.nextToken());\n while (t-- > 0) {\n st = new StringTokenizer(bf.readLine());\n int n = Integer.parseInt(st.nextToken());\n memo2 = new HashMap<>();\n sb.append(countTerm(n, 0, 0)).append(\"\\n\");\n }\n System.out.print(sb);\n }\n\n public static void main(String[] args) throws IOException {\n Scanner sc = new Scanner(System.in);\n\n int n = sc.nextInt();\n System.out.println(n == 1 ? 0 : 1);\n\n\n\n }\n\n static boolean checkEmpty(String word,String res) {\n if (word.equals(\"\"))\n return true;\n\n int count = 1;\n for (int i = 1; i < word.length(); ++i) {\n if (word.charAt(i) == word.charAt(i - 1)) {\n count++;\n res += word.charAt(i);\n } else {\n if (res.length() >= 1)\n res += word.charAt(i - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n }\n }\n if (res.length() >= 1)\n res += word.charAt(word.length() - 1);\n if (count >= 2) {\n word = word.replace(res, \"\");\n return checkEmpty(word,\"\");\n }\n return false;\n }\n\n\n static int countTerm(int n, int i, int count) {\n if (i > n)\n return Integer.MAX_VALUE;\n\n if (i == n)\n return count;\n\n// if (memo2.get(i) != null)\n// return memo2.get(i);\n\n int ret, min = Integer.MAX_VALUE;\n\n for (int j = 1; j <= n; ++j) {\n ret = countTerm(n, i + j * j, count + 1);\n min = Math.min(min, ret);\n }\n\n memo2.put(i, count);\n return min;\n }\n\n\n static int countStrings(char[] arr, int i, int s, int l, String concat) {\n if (i >= arr.length) {\n return 0;\n }\n if (l == 0) {\n int sum = 0;\n for (int j = 0; j < concat.length() - 1; ++j) {\n if (concat.charAt(j) > concat.charAt(j + 1))\n return 0;\n }\n for (int j = 0; j < concat.length(); ++j) {\n sum += concat.charAt(j) - 'a' + 1;\n }\n if (sum == s)\n return 1;\n return 0;\n }\n if (l < 0)\n return 0;\n\n\n int left = countStrings(arr, i + 1, s, l - 1, concat + arr[i]);\n int right = countStrings(arr, i + 1, s, l, concat);\n\n return left + right;\n }\n\n static void countMoves(Point[][] grid, int start, int end, int start2, int end2, boolean[][] vis, int sumRed, int sumBlue) {\n if (start >= grid.length || start < 0 || end >= grid[0].length || end < 0)\n return;\n\n // countMoves(grid,start+1,end,start2,end2,vis,sumRed+grid[start][end].i,sumB);\n\n }\n\n\n static long countWin(long h) {\n if (h == 1)\n return 1;\n\n return 2 * countWin(h / 2) + 1;\n\n }\n\n static int lowerBound(int[] arr, int element) {\n\n int low = 0, high = arr.length - 1, ans = 0;\n while (low <= high) {\n int mid = low + (high - low) / 2;\n if (arr[mid] <= element) {\n low = mid + 1;\n ans = mid;\n } else\n high = mid - 1;\n\n }\n\n return high;\n }\n\n static boolean isPalindrome(String word) {\n int i = 0, j = word.length() - 1;\n\n while (i <= j) {\n if (word.charAt(i++) != word.charAt(j--))\n return false;\n }\n\n return true;\n }\n\n static String longestPalindrome(String[] words, String word, int i) {\n if (i >= words.length) {\n if (isPalindrome(word))\n return word;\n\n return \"\";\n }\n\n if (word.length() > 0 && isPalindrome(word))\n return word;\n String left = longestPalindrome(words, word + words[i], i + 1);\n String right = longestPalindrome(words, word, i + 1);\n\n if (left.length() > 0)\n return left;\n return right;\n }\n\n\n static int solve(int[] arr, int i, int j, int k) {\n if (i == j && arr[i] <= k)\n return 1;\n\n int left = 0, right = 0;\n if (arr[i] <= k)\n left = solve(arr, i + 1, j, k) + 1;\n\n else if (arr[j] <= k)\n right = solve(arr, i, j - 1, k) + 1;\n\n return left + right;\n }\n\n static int minMove(BigInteger bg, int count) {\n if (bg.equals(BigInteger.ONE))\n return count;\n\n int first = Integer.MAX_VALUE, sec = Integer.MAX_VALUE, last = Integer.MAX_VALUE;\n if (bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO) == 0)\n first = minMove(bg.divide(BigInteger.valueOf(2)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0)\n sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1);\n\n else if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0)\n last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1);\n\n if (memo.containsKey(bg))\n return memo.get(bg);\n\n memo.put(bg, Math.min(first, Math.min(sec, last)));\n\n return Math.min(first, Math.min(sec, last));\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigInteger; import java.util.*; public class Main { static Map<BigInteger, Integer> memo; static boolean[][] vis; static List<List<Integer>> adj; static List<Integer> vertices; static class Point { int i, j; public Point(int i, int j) { this.i = i; this.j = j; } } //# North, South, East and West direction vectors //dr = [-1, +1, 0, 0] //dc = [0, 0, +1, -1] static int[][][] cache; static Map<Integer, Integer> memo2; void UVA_11407() throws IOException { Scanner sc = new Scanner(System.in); BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(bf.readLine()); StringBuilder sb = new StringBuilder(); int t = Integer.parseInt(st.nextToken()); while (t-- > 0) { st = new StringTokenizer(bf.readLine()); int n = Integer.parseInt(st.nextToken()); memo2 = new HashMap<>(); sb.append(countTerm(n, 0, 0)).append("\n"); } System.out.print(sb); } public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); System.out.println(n == 1 ? 0 : 1); } static boolean checkEmpty(String word,String res) { if (word.equals("")) return true; int count = 1; for (int i = 1; i < word.length(); ++i) { if (word.charAt(i) == word.charAt(i - 1)) { count++; res += word.charAt(i); } else { if (res.length() >= 1) res += word.charAt(i - 1); if (count >= 2) { word = word.replace(res, ""); return checkEmpty(word,""); } } } if (res.length() >= 1) res += word.charAt(word.length() - 1); if (count >= 2) { word = word.replace(res, ""); return checkEmpty(word,""); } return false; } static int countTerm(int n, int i, int count) { if (i > n) return Integer.MAX_VALUE; if (i == n) return count; // if (memo2.get(i) != null) // return memo2.get(i); int ret, min = Integer.MAX_VALUE; for (int j = 1; j <= n; ++j) { ret = countTerm(n, i + j * j, count + 1); min = Math.min(min, ret); } memo2.put(i, count); return min; } static int countStrings(char[] arr, int i, int s, int l, String concat) { if (i >= arr.length) { return 0; } if (l == 0) { int sum = 0; for (int j = 0; j < concat.length() - 1; ++j) { if (concat.charAt(j) > concat.charAt(j + 1)) return 0; } for (int j = 0; j < concat.length(); ++j) { sum += concat.charAt(j) - 'a' + 1; } if (sum == s) return 1; return 0; } if (l < 0) return 0; int left = countStrings(arr, i + 1, s, l - 1, concat + arr[i]); int right = countStrings(arr, i + 1, s, l, concat); return left + right; } static void countMoves(Point[][] grid, int start, int end, int start2, int end2, boolean[][] vis, int sumRed, int sumBlue) { if (start >= grid.length || start < 0 || end >= grid[0].length || end < 0) return; // countMoves(grid,start+1,end,start2,end2,vis,sumRed+grid[start][end].i,sumB); } static long countWin(long h) { if (h == 1) return 1; return 2 * countWin(h / 2) + 1; } static int lowerBound(int[] arr, int element) { int low = 0, high = arr.length - 1, ans = 0; while (low <= high) { int mid = low + (high - low) / 2; if (arr[mid] <= element) { low = mid + 1; ans = mid; } else high = mid - 1; } return high; } static boolean isPalindrome(String word) { int i = 0, j = word.length() - 1; while (i <= j) { if (word.charAt(i++) != word.charAt(j--)) return false; } return true; } static String longestPalindrome(String[] words, String word, int i) { if (i >= words.length) { if (isPalindrome(word)) return word; return ""; } if (word.length() > 0 && isPalindrome(word)) return word; String left = longestPalindrome(words, word + words[i], i + 1); String right = longestPalindrome(words, word, i + 1); if (left.length() > 0) return left; return right; } static int solve(int[] arr, int i, int j, int k) { if (i == j && arr[i] <= k) return 1; int left = 0, right = 0; if (arr[i] <= k) left = solve(arr, i + 1, j, k) + 1; else if (arr[j] <= k) right = solve(arr, i, j - 1, k) + 1; return left + right; } static int minMove(BigInteger bg, int count) { if (bg.equals(BigInteger.ONE)) return count; int first = Integer.MAX_VALUE, sec = Integer.MAX_VALUE, last = Integer.MAX_VALUE; if (bg.mod(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO) == 0) first = minMove(bg.divide(BigInteger.valueOf(2)), count + 1); else if (bg.mod(BigInteger.valueOf(3)).compareTo(BigInteger.ZERO) == 0) sec = minMove(bg.multiply(BigInteger.valueOf(2)).divide(BigInteger.valueOf(3)), count + 1); else if (bg.mod(BigInteger.valueOf(5)).compareTo(BigInteger.ZERO) == 0) last = minMove(bg.multiply(BigInteger.valueOf(4)).divide(BigInteger.valueOf(5)), count + 1); if (memo.containsKey(bg)) return memo.get(bg); memo.put(bg, Math.min(first, Math.min(sec, last))); return Math.min(first, Math.min(sec, last)); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 42, 5 ], [ 42, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 17, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 28, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 33, 38 ], [ 6, 39 ], [ 39, 40 ], [ 0, 41 ], [ 41, 42 ], [ 41, 43 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint i = stdIn.nextInt();\n\t\tif(i == 0) {\n\t\t\tSystem.out.println(1);\n\t\t}else if(i == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint i = stdIn.nextInt();\n\t\tif(i == 0) {\n\t\t\tSystem.out.println(1);\n\t\t}else if(i == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}\n}", "Main", "public static void main(String args[]) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint i = stdIn.nextInt();\n\t\tif(i == 0) {\n\t\t\tSystem.out.println(1);\n\t\t}else if(i == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}", "main", "{\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint i = stdIn.nextInt();\n\t\tif(i == 0) {\n\t\t\tSystem.out.println(1);\n\t\t}else if(i == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}", "Scanner stdIn = new Scanner(System.in);", "stdIn", "new Scanner(System.in)", "int i = stdIn.nextInt();", "i", "stdIn.nextInt()", "stdIn.nextInt", "stdIn", "if(i == 0) {\n\t\t\tSystem.out.println(1);\n\t\t}else if(i == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}", "i == 0", "i", "0", "{\n\t\t\tSystem.out.println(1);\n\t\t}", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "if(i == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}", "i == 1", "i", "1", "{\n\t\t\tSystem.out.println(0);\n\t\t}", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "String args[]", "args", "public class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint i = stdIn.nextInt();\n\t\tif(i == 0) {\n\t\t\tSystem.out.println(1);\n\t\t}else if(i == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}\n}", "public class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint i = stdIn.nextInt();\n\t\tif(i == 0) {\n\t\t\tSystem.out.println(1);\n\t\t}else if(i == 1) {\n\t\t\tSystem.out.println(0);\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String args[]) { Scanner stdIn = new Scanner(System.in); int i = stdIn.nextInt(); if(i == 0) { System.out.println(1); }else if(i == 1) { System.out.println(0); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 37, 5 ], [ 37, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 8, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 25, 26 ], [ 25, 27 ], [ 8, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 28, 33 ], [ 6, 34 ], [ 34, 35 ], [ 0, 36 ], [ 36, 37 ], [ 36, 38 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\n\t\tString message = \"0\";\n\t\tif(x == 0) {\n\t\t\tmessage = \"1\";\n\t\t}\n\n\t\tSystem.out.println(message);\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\n\t\tString message = \"0\";\n\t\tif(x == 0) {\n\t\t\tmessage = \"1\";\n\t\t}\n\n\t\tSystem.out.println(message);\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\n\t\tString message = \"0\";\n\t\tif(x == 0) {\n\t\t\tmessage = \"1\";\n\t\t}\n\n\t\tSystem.out.println(message);\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\n\t\tString message = \"0\";\n\t\tif(x == 0) {\n\t\t\tmessage = \"1\";\n\t\t}\n\n\t\tSystem.out.println(message);\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "String message = \"0\";", "message", "\"0\"", "if(x == 0) {\n\t\t\tmessage = \"1\";\n\t\t}", "x == 0", "x", "0", "{\n\t\t\tmessage = \"1\";\n\t\t}", "message = \"1\"", "message", "\"1\"", "System.out.println(message)", "System.out.println", "System.out", "System", "System.out", "message", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\n\t\tString message = \"0\";\n\t\tif(x == 0) {\n\t\t\tmessage = \"1\";\n\t\t}\n\n\t\tSystem.out.println(message);\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\n\t\tString message = \"0\";\n\t\tif(x == 0) {\n\t\t\tmessage = \"1\";\n\t\t}\n\n\t\tSystem.out.println(message);\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int x = scan.nextInt(); String message = "0"; if(x == 0) { message = "1"; } System.out.println(message); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 4, 18, 13, 41, 13, 2, 13, 17, 41, 13, 8, 13, 17, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 43, 5 ], [ 43, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 14, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 21, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 25, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 30, 32 ], [ 30, 33 ], [ 8, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 34, 39 ], [ 6, 40 ], [ 40, 41 ], [ 0, 42 ], [ 42, 43 ], [ 42, 44 ] ]
[ "import java.util.*;\n\npublic class Main {\n\n public static void main(String args[]) {\n\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = Integer.parseInt(sc.next());\n sc.close();\n\n // 主処理\n boolean judge = x == 0;\n int result = judge ? 1 : 0;\n\n // 出力\n System.out.println(result);\n }\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\n public static void main(String args[]) {\n\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = Integer.parseInt(sc.next());\n sc.close();\n\n // 主処理\n boolean judge = x == 0;\n int result = judge ? 1 : 0;\n\n // 出力\n System.out.println(result);\n }\n}", "Main", "public static void main(String args[]) {\n\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = Integer.parseInt(sc.next());\n sc.close();\n\n // 主処理\n boolean judge = x == 0;\n int result = judge ? 1 : 0;\n\n // 出力\n System.out.println(result);\n }", "main", "{\n\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = Integer.parseInt(sc.next());\n sc.close();\n\n // 主処理\n boolean judge = x == 0;\n int result = judge ? 1 : 0;\n\n // 出力\n System.out.println(result);\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x = Integer.parseInt(sc.next());", "x", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc", "sc.close()", "sc.close", "sc", "boolean judge = x == 0;", "judge", "x == 0", "x", "0", "int result = judge ? 1 : 0;", "result", "judge ? 1 : 0", "judge", "1", "0", "System.out.println(result)", "System.out.println", "System.out", "System", "System.out", "result", "String args[]", "args", "public class Main {\n\n public static void main(String args[]) {\n\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = Integer.parseInt(sc.next());\n sc.close();\n\n // 主処理\n boolean judge = x == 0;\n int result = judge ? 1 : 0;\n\n // 出力\n System.out.println(result);\n }\n}", "public class Main {\n\n public static void main(String args[]) {\n\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = Integer.parseInt(sc.next());\n sc.close();\n\n // 主処理\n boolean judge = x == 0;\n int result = judge ? 1 : 0;\n\n // 出力\n System.out.println(result);\n }\n}", "Main" ]
import java.util.*; public class Main { public static void main(String args[]) { // 入力 Scanner sc = new Scanner(System.in); int x = Integer.parseInt(sc.next()); sc.close(); // 主処理 boolean judge = x == 0; int result = judge ? 1 : 0; // 出力 System.out.println(result); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 13, 17, 4, 18, 13, 17, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 49, 14 ], [ 49, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 17, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 29, 30 ], [ 17, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 35 ], [ 35, 36 ], [ 36, 37 ], [ 35, 38 ], [ 31, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 17, 43 ], [ 43, 44 ], [ 44, 45 ], [ 15, 46 ], [ 46, 47 ], [ 0, 48 ], [ 48, 49 ], [ 48, 50 ] ]
[ "import java.io.*;\nimport java.util.*;\n\nimport static java.lang.Integer.*;\nimport static java.lang.Long.*;\n\npublic class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter pw = new PrintWriter(System.out);\n\n int x = parseInt(in.readLine());\n if (x == 0) pw.println(1);\n else pw.println(0);\n \n pw.close();\n\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "import static java.lang.Integer.*;", "import static java.lang.Integer.*;", "import static java.lang.Integer.*;", "import static java.lang.Long.*;", "import static java.lang.Long.*;", "import static java.lang.Long.*;", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter pw = new PrintWriter(System.out);\n\n int x = parseInt(in.readLine());\n if (x == 0) pw.println(1);\n else pw.println(0);\n \n pw.close();\n\n }\n}", "Main", "public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter pw = new PrintWriter(System.out);\n\n int x = parseInt(in.readLine());\n if (x == 0) pw.println(1);\n else pw.println(0);\n \n pw.close();\n\n }", "main", "{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter pw = new PrintWriter(System.out);\n\n int x = parseInt(in.readLine());\n if (x == 0) pw.println(1);\n else pw.println(0);\n \n pw.close();\n\n }", "BufferedReader in = new BufferedReader(new InputStreamReader(System.in));", "in", "new BufferedReader(new InputStreamReader(System.in))", "PrintWriter pw = new PrintWriter(System.out);", "pw", "new PrintWriter(System.out)", "int x = parseInt(in.readLine());", "x", "parseInt(in.readLine())", "parseInt", "in.readLine()", "in.readLine", "in", "if (x == 0) pw.println(1);\n else pw.println(0);", "x == 0", "x", "0", "pw.println(1)", "pw.println", "pw", "1", "pw.println(0)", "pw.println", "pw", "0", "pw.close()", "pw.close", "pw", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter pw = new PrintWriter(System.out);\n\n int x = parseInt(in.readLine());\n if (x == 0) pw.println(1);\n else pw.println(0);\n \n pw.close();\n\n }\n}", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter pw = new PrintWriter(System.out);\n\n int x = parseInt(in.readLine());\n if (x == 0) pw.println(1);\n else pw.println(0);\n \n pw.close();\n\n }\n}", "Main" ]
import java.io.*; import java.util.*; import static java.lang.Integer.*; import static java.lang.Long.*; public class Main { public static void main(String[] args) throws IOException { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); PrintWriter pw = new PrintWriter(System.out); int x = parseInt(in.readLine()); if (x == 0) pw.println(1); else pw.println(0); pw.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 18, 13, 13, 41, 13, 18, 13, 13, 41, 13, 20, 41, 13, 20, 41, 13, 20, 4, 18, 13, 17, 13, 13, 4, 18, 13, 23, 13, 6, 13, 12, 13, 30, 4, 18, 13, 8, 2, 4, 18, 13, 17, 17, 17, 23, 13, 23, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 0, 13, 17, 23, 13, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 30, 38, 5, 13, 30, 37, 20, 30, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 22, 23 ], [ 22, 24 ], [ 0, 25 ], [ 25, 26 ], [ 25, 27 ], [ 0, 28 ], [ 139, 29 ], [ 139, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 32, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 32, 43 ], [ 43, 44 ], [ 43, 45 ], [ 32, 46 ], [ 46, 47 ], [ 46, 48 ], [ 32, 49 ], [ 49, 50 ], [ 49, 51 ], [ 32, 52 ], [ 52, 53 ], [ 53, 54 ], [ 52, 55 ], [ 52, 56 ], [ 52, 57 ], [ 32, 58 ], [ 58, 59 ], [ 59, 60 ], [ 30, 61 ], [ 61, 62 ], [ 139, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 68, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 74, 75 ], [ 72, 76 ], [ 71, 77 ], [ 71, 78 ], [ 65, 79 ], [ 79, 80 ], [ 65, 81 ], [ 81, 82 ], [ 65, 83 ], [ 83, 84 ], [ 139, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 85, 89 ], [ 89, 90 ], [ 85, 91 ], [ 91, 92 ], [ 91, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 93, 97 ], [ 97, 98 ], [ 97, 99 ], [ 91, 100 ], [ 100, 101 ], [ 85, 102 ], [ 102, 103 ], [ 102, 104 ], [ 104, 105 ], [ 105, 106 ], [ 106, 107 ], [ 107, 108 ], [ 107, 109 ], [ 106, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 105, 114 ], [ 114, 115 ], [ 115, 116 ], [ 116, 117 ], [ 116, 118 ], [ 118, 119 ], [ 119, 120 ], [ 115, 121 ], [ 121, 122 ], [ 122, 123 ], [ 122, 124 ], [ 104, 125 ], [ 125, 126 ], [ 126, 127 ], [ 127, 128 ], [ 85, 129 ], [ 129, 130 ], [ 129, 131 ], [ 131, 132 ], [ 132, 133 ], [ 133, 134 ], [ 134, 135 ], [ 133, 136 ], [ 136, 137 ], [ 0, 138 ], [ 138, 139 ], [ 138, 140 ] ]
[ "import java.io.OutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.StringTokenizer;\nimport java.io.IOException;\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.io.InputStream;\n\n/**\n * Built using CHelper plug-in\n * Actual solution is at the top\n *\n * @author Pradyumn Agrawal (coderbond007)\n */\npublic class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n FastScanner in = new FastScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class ANot {\n public void solve(int testNumber, FastScanner in, PrintWriter out) {\n out.println(in.nextInt() == 1 ? 0 : 1);\n }\n\n }\n\n static class FastScanner {\n BufferedReader reader;\n StringTokenizer tokenizer;\n\n public FastScanner(InputStream inputStream) {\n reader = new BufferedReader(new InputStreamReader(inputStream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}\n", "import java.io.OutputStream;", "OutputStream", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "import java.io.PrintWriter;", "PrintWriter", "java.io", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "import java.io.IOException;", "IOException", "java.io", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.io.InputStream;", "InputStream", "java.io", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n FastScanner in = new FastScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class ANot {\n public void solve(int testNumber, FastScanner in, PrintWriter out) {\n out.println(in.nextInt() == 1 ? 0 : 1);\n }\n\n }\n\n static class FastScanner {\n BufferedReader reader;\n StringTokenizer tokenizer;\n\n public FastScanner(InputStream inputStream) {\n reader = new BufferedReader(new InputStreamReader(inputStream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}", "Main", "public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n FastScanner in = new FastScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }", "main", "{\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n FastScanner in = new FastScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }", "InputStream inputStream = System.in;", "inputStream", "System.in", "System", "System.in", "OutputStream outputStream = System.out;", "outputStream", "System.out", "System", "System.out", "FastScanner in = new FastScanner(inputStream);", "in", "new FastScanner(inputStream)", "PrintWriter out = new PrintWriter(outputStream);", "out", "new PrintWriter(outputStream)", "ANot solver = new ANot();", "solver", "new ANot()", "solver.solve(1, in, out)", "solver.solve", "solver", "1", "in", "out", "out.close()", "out.close", "out", "String[] args", "args", "static class ANot {\n public void solve(int testNumber, FastScanner in, PrintWriter out) {\n out.println(in.nextInt() == 1 ? 0 : 1);\n }\n\n }", "ANot", "public void solve(int testNumber, FastScanner in, PrintWriter out) {\n out.println(in.nextInt() == 1 ? 0 : 1);\n }", "solve", "{\n out.println(in.nextInt() == 1 ? 0 : 1);\n }", "out.println(in.nextInt() == 1 ? 0 : 1)", "out.println", "out", "in.nextInt() == 1 ? 0 : 1", "in.nextInt() == 1", "in.nextInt()", "in.nextInt", "in", "1", "0", "1", "int testNumber", "testNumber", "FastScanner in", "in", "PrintWriter out", "out", "static class FastScanner {\n BufferedReader reader;\n StringTokenizer tokenizer;\n\n public FastScanner(InputStream inputStream) {\n reader = new BufferedReader(new InputStreamReader(inputStream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }", "FastScanner", "BufferedReader reader;", "reader", "StringTokenizer tokenizer;", "tokenizer", "public FastScanner(InputStream inputStream) {\n reader = new BufferedReader(new InputStreamReader(inputStream), 32768);\n tokenizer = null;\n }", "FastScanner", "{\n reader = new BufferedReader(new InputStreamReader(inputStream), 32768);\n tokenizer = null;\n }", "reader = new BufferedReader(new InputStreamReader(inputStream), 32768)", "reader", "new BufferedReader(new InputStreamReader(inputStream), 32768)", "tokenizer = null", "tokenizer", "null", "InputStream inputStream", "inputStream", "public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }", "next", "{\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }", "while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }", "tokenizer == null || !tokenizer.hasMoreTokens()", "tokenizer == null", "tokenizer", "null", "!tokenizer.hasMoreTokens()", "tokenizer.hasMoreTokens()", "tokenizer.hasMoreTokens", "tokenizer", "{\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }", "try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }", "catch (IOException e) {\n throw new RuntimeException(e);\n }", "IOException e", "{\n throw new RuntimeException(e);\n }", "throw new RuntimeException(e);", "new RuntimeException(e)", "{\n tokenizer = new StringTokenizer(reader.readLine());\n }", "tokenizer = new StringTokenizer(reader.readLine())", "tokenizer", "new StringTokenizer(reader.readLine())", "return tokenizer.nextToken();", "tokenizer.nextToken()", "tokenizer.nextToken", "tokenizer", "public int nextInt() {\n return Integer.parseInt(next());\n }", "nextInt", "{\n return Integer.parseInt(next());\n }", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n FastScanner in = new FastScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class ANot {\n public void solve(int testNumber, FastScanner in, PrintWriter out) {\n out.println(in.nextInt() == 1 ? 0 : 1);\n }\n\n }\n\n static class FastScanner {\n BufferedReader reader;\n StringTokenizer tokenizer;\n\n public FastScanner(InputStream inputStream) {\n reader = new BufferedReader(new InputStreamReader(inputStream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}", "public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n FastScanner in = new FastScanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n ANot solver = new ANot();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class ANot {\n public void solve(int testNumber, FastScanner in, PrintWriter out) {\n out.println(in.nextInt() == 1 ? 0 : 1);\n }\n\n }\n\n static class FastScanner {\n BufferedReader reader;\n StringTokenizer tokenizer;\n\n public FastScanner(InputStream inputStream) {\n reader = new BufferedReader(new InputStreamReader(inputStream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}", "Main" ]
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.StringTokenizer; import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top * * @author Pradyumn Agrawal (coderbond007) */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; FastScanner in = new FastScanner(inputStream); PrintWriter out = new PrintWriter(outputStream); ANot solver = new ANot(); solver.solve(1, in, out); out.close(); } static class ANot { public void solve(int testNumber, FastScanner in, PrintWriter out) { out.println(in.nextInt() == 1 ? 0 : 1); } } static class FastScanner { BufferedReader reader; StringTokenizer tokenizer; public FastScanner(InputStream inputStream) { reader = new BufferedReader(new InputStreamReader(inputStream), 32768); tokenizer = null; } public String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 38, 5, 13, 30, 29, 30, 41, 13, 4, 18, 13, 14, 2, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 12, 13, 30, 41, 13, 20, 4, 18, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 7, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 15, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 20, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 26, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 30, 35 ], [ 26, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 36, 41 ], [ 7, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 48, 49 ], [ 49, 50 ], [ 42, 51 ], [ 51, 52 ] ]
[ "import java.util.*;\nimport java.math.*;\nclass Main {\n\tstatic Scanner sc = new Scanner(System.in);\n\n\tvoid solve() {\n\t\ttry {\n\t\t\tint num = sc.nextInt();\n\t\t\tif (num == 1)\n\t\t\t\tSystem.out.println(0);\n\t\t\telse\n\t\t\t\tSystem.out.println(1);\n\t\t} catch (Exception e) {\n\t\t\treturn;\n\t\t}\n\t}\n\tpublic static void main(String[] args) {\n\t\tMain ob = new Main();\n\t\tob.solve();\n\t}\n}", "import java.util.*;", "util.*", "java", "import java.math.*;", "math.*", "java", "class Main {\n\tstatic Scanner sc = new Scanner(System.in);\n\n\tvoid solve() {\n\t\ttry {\n\t\t\tint num = sc.nextInt();\n\t\t\tif (num == 1)\n\t\t\t\tSystem.out.println(0);\n\t\t\telse\n\t\t\t\tSystem.out.println(1);\n\t\t} catch (Exception e) {\n\t\t\treturn;\n\t\t}\n\t}\n\tpublic static void main(String[] args) {\n\t\tMain ob = new Main();\n\t\tob.solve();\n\t}\n}", "Main", "static Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "void solve() {\n\t\ttry {\n\t\t\tint num = sc.nextInt();\n\t\t\tif (num == 1)\n\t\t\t\tSystem.out.println(0);\n\t\t\telse\n\t\t\t\tSystem.out.println(1);\n\t\t} catch (Exception e) {\n\t\t\treturn;\n\t\t}\n\t}", "solve", "{\n\t\ttry {\n\t\t\tint num = sc.nextInt();\n\t\t\tif (num == 1)\n\t\t\t\tSystem.out.println(0);\n\t\t\telse\n\t\t\t\tSystem.out.println(1);\n\t\t} catch (Exception e) {\n\t\t\treturn;\n\t\t}\n\t}", "try {\n\t\t\tint num = sc.nextInt();\n\t\t\tif (num == 1)\n\t\t\t\tSystem.out.println(0);\n\t\t\telse\n\t\t\t\tSystem.out.println(1);\n\t\t} catch (Exception e) {\n\t\t\treturn;\n\t\t}", "catch (Exception e) {\n\t\t\treturn;\n\t\t}", "Exception e", "{\n\t\t\treturn;\n\t\t}", "return;", "{\n\t\t\tint num = sc.nextInt();\n\t\t\tif (num == 1)\n\t\t\t\tSystem.out.println(0);\n\t\t\telse\n\t\t\t\tSystem.out.println(1);\n\t\t}", "int num = sc.nextInt();", "num", "sc.nextInt()", "sc.nextInt", "sc", "if (num == 1)\n\t\t\t\tSystem.out.println(0);\n\t\t\telse\n\t\t\t\tSystem.out.println(1);", "num == 1", "num", "1", "System.out.println(0)", "System.out.println", "System.out", "System", "System.out", "0", "System.out.println(1)", "System.out.println", "System.out", "System", "System.out", "1", "public static void main(String[] args) {\n\t\tMain ob = new Main();\n\t\tob.solve();\n\t}", "main", "{\n\t\tMain ob = new Main();\n\t\tob.solve();\n\t}", "Main ob = new Main();", "ob", "new Main()", "ob.solve()", "ob.solve", "ob", "String[] args", "args" ]
import java.util.*; import java.math.*; class Main { static Scanner sc = new Scanner(System.in); void solve() { try { int num = sc.nextInt(); if (num == 1) System.out.println(0); else System.out.println(1); } catch (Exception e) { return; } } public static void main(String[] args) { Main ob = new Main(); ob.solve(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 37, 5 ], [ 37, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 8, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 25, 26 ], [ 25, 27 ], [ 8, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 28, 33 ], [ 6, 34 ], [ 34, 35 ], [ 0, 36 ], [ 36, 37 ], [ 36, 38 ] ]
[ "import java.util.*;\npublic class Main {\n public static void main(String[] args){\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n \n // 判定\n int result = 0;\n if(x == 0){\n result = 1;\n }\n \n // 出力\n System.out.println(result);\n }\n\n}", "import java.util.*;", "util.*", "java", "public class Main {\n public static void main(String[] args){\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n \n // 判定\n int result = 0;\n if(x == 0){\n result = 1;\n }\n \n // 出力\n System.out.println(result);\n }\n\n}", "Main", "public static void main(String[] args){\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n \n // 判定\n int result = 0;\n if(x == 0){\n result = 1;\n }\n \n // 出力\n System.out.println(result);\n }", "main", "{\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n \n // 判定\n int result = 0;\n if(x == 0){\n result = 1;\n }\n \n // 出力\n System.out.println(result);\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int result = 0;", "result", "0", "if(x == 0){\n result = 1;\n }", "x == 0", "x", "0", "{\n result = 1;\n }", "result = 1", "result", "1", "System.out.println(result)", "System.out.println", "System.out", "System", "System.out", "result", "String[] args", "args", "public class Main {\n public static void main(String[] args){\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n \n // 判定\n int result = 0;\n if(x == 0){\n result = 1;\n }\n \n // 出力\n System.out.println(result);\n }\n\n}", "public class Main {\n public static void main(String[] args){\n // 入力\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n \n // 判定\n int result = 0;\n if(x == 0){\n result = 1;\n }\n \n // 出力\n System.out.println(result);\n }\n\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args){ // 入力 Scanner sc = new Scanner(System.in); int x = sc.nextInt(); // 判定 int result = 0; if(x == 0){ result = 1; } // 出力 System.out.println(result); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 41, 13, 41, 13, 17, 41, 13, 17, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 41, 13, 20, 0, 13, 20, 4, 18, 18, 13, 13, 2, 4, 18, 13, 17, 4, 18, 13, 23, 13, 12, 13, 30, 0, 13, 20, 13, 0, 13, 20, 0, 18, 13, 17, 17, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 14, 2, 18, 13, 13, 17, 30, 0, 18, 13, 13, 13, 4, 18, 13, 13, 11, 1, 41, 13, 17, 2, 2, 2, 13, 4, 18, 13, 2, 4, 18, 13, 13, 18, 13, 13, 2, 2, 13, 4, 18, 13, 13, 13, 1, 40, 13, 30, 0, 18, 13, 2, 4, 18, 13, 13, 13, 4, 18, 13, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 23, 13, 12, 13, 30, 0, 13, 20, 23, 13, 12, 13, 30, 42, 2, 2, 13, 17, 40, 4, 18, 13, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 29, 4, 18, 4, 13, 17, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 0, 18, 13, 13, 4, 13, 29, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 12, 13, 30, 4, 18, 13, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 321, 14 ], [ 321, 15 ], [ 15, 16 ], [ 321, 17 ], [ 17, 18 ], [ 321, 19 ], [ 19, 20 ], [ 19, 21 ], [ 321, 22 ], [ 22, 23 ], [ 22, 24 ], [ 321, 25 ], [ 25, 26 ], [ 321, 27 ], [ 27, 28 ], [ 321, 29 ], [ 29, 30 ], [ 321, 31 ], [ 31, 32 ], [ 321, 33 ], [ 33, 34 ], [ 321, 35 ], [ 35, 36 ], [ 321, 37 ], [ 37, 38 ], [ 321, 39 ], [ 39, 40 ], [ 321, 41 ], [ 41, 42 ], [ 321, 43 ], [ 43, 44 ], [ 321, 45 ], [ 45, 46 ], [ 321, 47 ], [ 47, 48 ], [ 321, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 55, 56 ], [ 55, 57 ], [ 51, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 58, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 63, 67 ], [ 51, 68 ], [ 68, 69 ], [ 69, 70 ], [ 49, 71 ], [ 71, 72 ], [ 321, 73 ], [ 73, 74 ], [ 73, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 75, 80 ], [ 80, 81 ], [ 80, 82 ], [ 75, 83 ], [ 83, 84 ], [ 84, 85 ], [ 84, 86 ], [ 83, 87 ], [ 75, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 93, 94 ], [ 93, 95 ], [ 88, 96 ], [ 96, 97 ], [ 97, 98 ], [ 88, 99 ], [ 100, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 102, 106 ], [ 101, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 108, 112 ], [ 107, 113 ], [ 113, 114 ], [ 114, 115 ], [ 113, 116 ], [ 100, 117 ], [ 117, 118 ], [ 118, 119 ], [ 119, 120 ], [ 119, 121 ], [ 117, 122 ], [ 123, 123 ], [ 123, 124 ], [ 124, 125 ], [ 124, 126 ], [ 126, 127 ], [ 127, 128 ], [ 123, 129 ], [ 129, 130 ], [ 130, 131 ], [ 131, 132 ], [ 130, 133 ], [ 129, 134 ], [ 134, 135 ], [ 134, 136 ], [ 123, 137 ], [ 137, 138 ], [ 138, 139 ], [ 138, 140 ], [ 140, 141 ], [ 141, 142 ], [ 140, 143 ], [ 137, 144 ], [ 117, 145 ], [ 145, 146 ], [ 146, 147 ], [ 117, 148 ], [ 148, 149 ], [ 149, 150 ], [ 150, 151 ], [ 150, 152 ], [ 152, 153 ], [ 153, 154 ], [ 154, 155 ], [ 153, 156 ], [ 152, 157 ], [ 149, 158 ], [ 158, 159 ], [ 159, 160 ], [ 158, 161 ], [ 73, 162 ], [ 162, 163 ], [ 321, 164 ], [ 164, 165 ], [ 164, 166 ], [ 166, 167 ], [ 164, 168 ], [ 168, 169 ], [ 164, 170 ], [ 170, 171 ], [ 170, 172 ], [ 172, 173 ], [ 173, 174 ], [ 173, 175 ], [ 170, 176 ], [ 176, 177 ], [ 164, 178 ], [ 178, 179 ], [ 178, 180 ], [ 180, 181 ], [ 181, 182 ], [ 181, 183 ], [ 178, 184 ], [ 184, 185 ], [ 164, 186 ], [ 186, 187 ], [ 186, 188 ], [ 188, 189 ], [ 189, 190 ], [ 190, 191 ], [ 191, 192 ], [ 191, 193 ], [ 190, 194 ], [ 194, 195 ], [ 195, 196 ], [ 196, 197 ], [ 189, 198 ], [ 198, 199 ], [ 198, 200 ], [ 188, 201 ], [ 201, 202 ], [ 202, 203 ], [ 203, 204 ], [ 164, 205 ], [ 205, 206 ], [ 205, 207 ], [ 207, 208 ], [ 208, 209 ], [ 209, 210 ], [ 210, 211 ], [ 164, 212 ], [ 212, 213 ], [ 212, 214 ], [ 214, 215 ], [ 215, 216 ], [ 216, 217 ], [ 217, 218 ], [ 216, 219 ], [ 219, 220 ], [ 164, 221 ], [ 221, 222 ], [ 221, 223 ], [ 223, 224 ], [ 224, 225 ], [ 225, 226 ], [ 226, 227 ], [ 225, 228 ], [ 228, 229 ], [ 164, 230 ], [ 230, 231 ], [ 230, 232 ], [ 232, 233 ], [ 233, 234 ], [ 234, 235 ], [ 235, 236 ], [ 236, 237 ], [ 234, 238 ], [ 164, 239 ], [ 239, 240 ], [ 239, 241 ], [ 241, 242 ], [ 242, 243 ], [ 243, 244 ], [ 244, 245 ], [ 243, 246 ], [ 246, 247 ], [ 164, 248 ], [ 248, 249 ], [ 248, 250 ], [ 250, 251 ], [ 251, 252 ], [ 251, 253 ], [ 250, 255 ], [ 255, 256 ], [ 256, 257 ], [ 257, 258 ], [ 257, 259 ], [ 255, 260 ], [ 260, 261 ], [ 260, 262 ], [ 255, 263 ], [ 263, 264 ], [ 264, 265 ], [ 255, 266 ], [ 266, 267 ], [ 267, 268 ], [ 268, 269 ], [ 268, 270 ], [ 267, 271 ], [ 271, 272 ], [ 250, 273 ], [ 273, 274 ], [ 248, 275 ], [ 275, 276 ], [ 164, 277 ], [ 277, 278 ], [ 277, 279 ], [ 279, 280 ], [ 280, 281 ], [ 280, 282 ], [ 279, 284 ], [ 284, 285 ], [ 285, 286 ], [ 286, 287 ], [ 286, 288 ], [ 284, 289 ], [ 289, 290 ], [ 289, 291 ], [ 284, 292 ], [ 292, 293 ], [ 293, 294 ], [ 284, 295 ], [ 295, 296 ], [ 296, 297 ], [ 297, 298 ], [ 297, 299 ], [ 296, 300 ], [ 300, 301 ], [ 279, 302 ], [ 302, 303 ], [ 277, 304 ], [ 304, 305 ], [ 164, 306 ], [ 306, 307 ], [ 306, 308 ], [ 308, 309 ], [ 309, 310 ], [ 310, 311 ], [ 311, 312 ], [ 164, 313 ], [ 313, 314 ], [ 313, 315 ], [ 315, 316 ], [ 316, 317 ], [ 317, 318 ], [ 316, 319 ], [ 0, 320 ], [ 320, 321 ], [ 320, 322 ] ]
[ "import java.util.*;\nimport java.io.*;\nimport java.lang.reflect.Array;\nimport java.math.BigInteger;\n\npublic class Main {\n\tstatic PrintWriter out;\n\tstatic StringBuilder sb;\n\tstatic int mod = 1000000007;\n\tstatic long inf = (long) 1e14;\n\tstatic int n, q;\n\tstatic ArrayList<Integer>[] ad;\n\tstatic long[][] memo;\n\tstatic boolean f;\n\tstatic boolean vis[];\n\tstatic int[] size, pa;\n\tstatic double[] x, y;\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tSystem.out.println(sc.nextInt()^1);\n\t\tout.close();\n\t}\n\n\tstatic int[] si;\n\tstatic ArrayList<Integer> primes;\n\n\tstatic void seive(int N) {\n\t\tsi = new int[N];\n\t\tprimes = new ArrayList<>();\n\t\tsi[1] = 1;\n\t\tfor (int i = 2; i < N; i++) {\n\t\t\tif (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}\n\t\t\tfor (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);\n\t\t}\n\t}\n\tstatic class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "import java.lang.reflect.Array;", "Array", "java.lang.reflect", "import java.math.BigInteger;", "BigInteger", "java.math", "public class Main {\n\tstatic PrintWriter out;\n\tstatic StringBuilder sb;\n\tstatic int mod = 1000000007;\n\tstatic long inf = (long) 1e14;\n\tstatic int n, q;\n\tstatic ArrayList<Integer>[] ad;\n\tstatic long[][] memo;\n\tstatic boolean f;\n\tstatic boolean vis[];\n\tstatic int[] size, pa;\n\tstatic double[] x, y;\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tSystem.out.println(sc.nextInt()^1);\n\t\tout.close();\n\t}\n\n\tstatic int[] si;\n\tstatic ArrayList<Integer> primes;\n\n\tstatic void seive(int N) {\n\t\tsi = new int[N];\n\t\tprimes = new ArrayList<>();\n\t\tsi[1] = 1;\n\t\tfor (int i = 2; i < N; i++) {\n\t\t\tif (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}\n\t\t\tfor (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);\n\t\t}\n\t}\n\tstatic class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}\n}", "Main", "static PrintWriter out;", "out", "static StringBuilder sb;", "sb", "static int mod = 1000000007;", "mod", "1000000007", "static long inf = (long) 1e14;", "inf", "(long) 1e14", "static int n", "n", "q;", "q", "static ArrayList<Integer>[] ad;", "ad", "static long[][] memo;", "memo", "static boolean f;", "f", "static boolean vis[];", "vis", "static int[] size", "size", "pa;", "pa", "static double[] x", "x", "y;", "y", "static int[] si;", "si", "static ArrayList<Integer> primes;", "primes", "public static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tSystem.out.println(sc.nextInt()^1);\n\t\tout.close();\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tSystem.out.println(sc.nextInt()^1);\n\t\tout.close();\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "out = new PrintWriter(System.out)", "out", "new PrintWriter(System.out)", "System.out.println(sc.nextInt()^1)", "System.out.println", "System.out", "System", "System.out", "sc.nextInt()^1", "sc.nextInt()", "sc.nextInt", "sc", "1", "out.close()", "out.close", "out", "String[] args", "args", "static void seive(int N) {\n\t\tsi = new int[N];\n\t\tprimes = new ArrayList<>();\n\t\tsi[1] = 1;\n\t\tfor (int i = 2; i < N; i++) {\n\t\t\tif (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}\n\t\t\tfor (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);\n\t\t}\n\t}", "seive", "{\n\t\tsi = new int[N];\n\t\tprimes = new ArrayList<>();\n\t\tsi[1] = 1;\n\t\tfor (int i = 2; i < N; i++) {\n\t\t\tif (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}\n\t\t\tfor (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);\n\t\t}\n\t}", "si = new int[N]", "si", "new int[N]", "N", "primes = new ArrayList<>()", "primes", "new ArrayList<>()", "si[1] = 1", "si[1]", "si", "1", "1", "for (int i = 2; i < N; i++) {\n\t\t\tif (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}\n\t\t\tfor (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);\n\t\t}", "int i = 2;", "int i = 2;", "i", "2", "i < N", "i", "N", "i++", "i++", "i", "{\n\t\t\tif (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}\n\t\t\tfor (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);\n\t\t}", "{\n\t\t\tif (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}\n\t\t\tfor (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);\n\t\t}", "if (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}", "si[i] == 0", "si[i]", "si", "i", "0", "{\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}", "si[i] = i", "si[i]", "si", "i", "i", "primes.add(i)", "primes.add", "primes", "i", "for (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);", "int j = 0;", "int j = 0;", "j", "0", "j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N", "j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N", "j < primes.size()", "j", "primes.size()", "primes.size", "primes", "primes.get(j) <= si[i]", "primes.get(j)", "primes.get", "primes", "j", "si[i]", "si", "i", "(i * primes.get(j)) < N", "(i * primes.get(j))", "i", "primes.get(j)", "primes.get", "primes", "j", "N", "j++", "j++", "j", "si[primes.get(j) * i] = primes.get(j);", "si[primes.get(j) * i] = primes.get(j)", "si[primes.get(j) * i]", "si", "primes.get(j) * i", "primes.get(j)", "primes.get", "primes", "j", "i", "primes.get(j)", "primes.get", "primes", "j", "int N", "N", "static class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}", "Scanner", "StringTokenizer st;", "st", "BufferedReader br;", "br", "public Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}", "Scanner", "{\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}", "br = new BufferedReader(new InputStreamReader(system))", "br", "new BufferedReader(new InputStreamReader(system))", "InputStream system", "system", "public Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}", "Scanner", "{\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}", "br = new BufferedReader(new FileReader(file))", "br", "new BufferedReader(new FileReader(file))", "String file", "file", "public String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}", "next", "{\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}", "while (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());", "st == null || !st.hasMoreTokens()", "st == null", "st", "null", "!st.hasMoreTokens()", "st.hasMoreTokens()", "st.hasMoreTokens", "st", "st = new StringTokenizer(br.readLine())", "st", "new StringTokenizer(br.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "public String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}", "nextLine", "{\n\t\t\treturn br.readLine();\n\t\t}", "return br.readLine();", "br.readLine()", "br.readLine", "br", "public int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "nextInt", "{\n\t\t\treturn Integer.parseInt(next());\n\t\t}", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "public double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}", "nextDouble", "{\n\t\t\treturn Double.parseDouble(next());\n\t\t}", "return Double.parseDouble(next());", "Double.parseDouble(next())", "Double.parseDouble", "Double", "next()", "next", "public char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}", "nextChar", "{\n\t\t\treturn next().charAt(0);\n\t\t}", "return next().charAt(0);", "next().charAt(0)", "next().charAt", "next()", "next", "0", "public Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}", "nextLong", "{\n\t\t\treturn Long.parseLong(next());\n\t\t}", "return Long.parseLong(next());", "Long.parseLong(next())", "Long.parseLong", "Long", "next()", "next", "public int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}", "nextArrInt", "{\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}", "int[] a = new int[n];", "a", "new int[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "a[i] = nextInt();", "a[i] = nextInt()", "a[i]", "a", "i", "nextInt()", "nextInt", "return a;", "a", "int n", "n", "public long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}", "nextArrLong", "{\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}", "long[] a = new long[n];", "a", "new long[n]", "n", "for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();", "int i = 0;", "int i = 0;", "i", "0", "i < n", "i", "n", "i++", "i++", "i", "a[i] = nextLong();", "a[i] = nextLong()", "a[i]", "a", "i", "nextLong()", "nextLong", "return a;", "a", "int n", "n", "public boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}", "ready", "{\n\t\t\treturn br.ready();\n\t\t}", "return br.ready();", "br.ready()", "br.ready", "br", "public void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}", "waitForInput", "{\n\t\t\tThread.sleep(3000);\n\t\t}", "Thread.sleep(3000)", "Thread.sleep", "Thread", "3000", "public class Main {\n\tstatic PrintWriter out;\n\tstatic StringBuilder sb;\n\tstatic int mod = 1000000007;\n\tstatic long inf = (long) 1e14;\n\tstatic int n, q;\n\tstatic ArrayList<Integer>[] ad;\n\tstatic long[][] memo;\n\tstatic boolean f;\n\tstatic boolean vis[];\n\tstatic int[] size, pa;\n\tstatic double[] x, y;\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tSystem.out.println(sc.nextInt()^1);\n\t\tout.close();\n\t}\n\n\tstatic int[] si;\n\tstatic ArrayList<Integer> primes;\n\n\tstatic void seive(int N) {\n\t\tsi = new int[N];\n\t\tprimes = new ArrayList<>();\n\t\tsi[1] = 1;\n\t\tfor (int i = 2; i < N; i++) {\n\t\t\tif (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}\n\t\t\tfor (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);\n\t\t}\n\t}\n\tstatic class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}\n}", "public class Main {\n\tstatic PrintWriter out;\n\tstatic StringBuilder sb;\n\tstatic int mod = 1000000007;\n\tstatic long inf = (long) 1e14;\n\tstatic int n, q;\n\tstatic ArrayList<Integer>[] ad;\n\tstatic long[][] memo;\n\tstatic boolean f;\n\tstatic boolean vis[];\n\tstatic int[] size, pa;\n\tstatic double[] x, y;\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tSystem.out.println(sc.nextInt()^1);\n\t\tout.close();\n\t}\n\n\tstatic int[] si;\n\tstatic ArrayList<Integer> primes;\n\n\tstatic void seive(int N) {\n\t\tsi = new int[N];\n\t\tprimes = new ArrayList<>();\n\t\tsi[1] = 1;\n\t\tfor (int i = 2; i < N; i++) {\n\t\t\tif (si[i] == 0) {\n\t\t\t\tsi[i] = i;\n\t\t\t\tprimes.add(i);\n\t\t\t}\n\t\t\tfor (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++)\n\t\t\t\tsi[primes.get(j) * i] = primes.get(j);\n\t\t}\n\t}\n\tstatic class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}\n}", "Main" ]
import java.util.*; import java.io.*; import java.lang.reflect.Array; import java.math.BigInteger; public class Main { static PrintWriter out; static StringBuilder sb; static int mod = 1000000007; static long inf = (long) 1e14; static int n, q; static ArrayList<Integer>[] ad; static long[][] memo; static boolean f; static boolean vis[]; static int[] size, pa; static double[] x, y; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); out = new PrintWriter(System.out); System.out.println(sc.nextInt()^1); out.close(); } static int[] si; static ArrayList<Integer> primes; static void seive(int N) { si = new int[N]; primes = new ArrayList<>(); si[1] = 1; for (int i = 2; i < N; i++) { if (si[i] == 0) { si[i] = i; primes.add(i); } for (int j = 0; j < primes.size() && primes.get(j) <= si[i] && (i * primes.get(j)) < N; j++) si[primes.get(j) * i] = primes.get(j); } } static class Scanner { StringTokenizer st; BufferedReader br; public Scanner(InputStream system) { br = new BufferedReader(new InputStreamReader(system)); } public Scanner(String file) throws Exception { br = new BufferedReader(new FileReader(file)); } public String next() throws IOException { while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine()); return st.nextToken(); } public String nextLine() throws IOException { return br.readLine(); } public int nextInt() throws IOException { return Integer.parseInt(next()); } public double nextDouble() throws IOException { return Double.parseDouble(next()); } public char nextChar() throws IOException { return next().charAt(0); } public Long nextLong() throws IOException { return Long.parseLong(next()); } public int[] nextArrInt(int n) throws IOException { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = nextInt(); return a; } public long[] nextArrLong(int n) throws IOException { long[] a = new long[n]; for (int i = 0; i < n; i++) a[i] = nextLong(); return a; } public boolean ready() throws IOException { return br.ready(); } public void waitForInput() throws InterruptedException { Thread.sleep(3000); } } }