node_ids
sequencelengths 4
1.4k
| edge_index
sequencelengths 1
2.22k
| text
sequencelengths 4
1.4k
| source
stringlengths 14
427k
|
---|---|---|---|
[
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,
18,
13,
13,
2,
2,
13,
13,
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
],
[
20,
21
],
[
21,
22
],
[
14,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
29,
29
],
[
29,
30
],
[
29,
31
],
[
29,
32
],
[
12,
33
],
[
33,
34
]
] | [
"import java.util.*;\nimport java.lang.*;\nimport java.io.*;\n\nclass Main\n{\n\tpublic static void main (String[] args) throws java.lang.Exception\n\t{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tSystem.out.println(n * n * n);\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"import java.lang.*;",
"lang.*",
"java",
"import java.io.*;",
"io.*",
"java",
"class Main\n{\n\tpublic static void main (String[] args) throws java.lang.Exception\n\t{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tSystem.out.println(n * n * n);\n\t}\n}",
"Main",
"public static void main (String[] args) throws java.lang.Exception\n\t{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tSystem.out.println(n * n * n);\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tSystem.out.println(n * n * n);\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int n = scan.nextInt();",
"n",
"scan.nextInt()",
"scan.nextInt",
"scan",
"System.out.println(n * n * n)",
"System.out.println",
"System.out",
"System",
"System.out",
"n * n * n",
"n * n * n",
"n",
"n",
"n",
"String[] args",
"args"
] | import java.util.*;
import java.lang.*;
import java.io.*;
class Main
{
public static void main (String[] args) throws java.lang.Exception
{
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
System.out.println(n * n * n);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
13,
4,
18,
13,
17,
30,
41,
13,
20,
41,
13,
42,
2,
0,
13,
4,
18,
13,
17,
30,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
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
],
[
60,
8
],
[
60,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
13,
14
],
[
13,
15
],
[
15,
16
],
[
16,
17
],
[
17,
18
],
[
15,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
12,
23
],
[
23,
24
],
[
24,
25
],
[
24,
26
],
[
23,
27
],
[
27,
28
],
[
23,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
30,
36
],
[
29,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
40,
43
],
[
37,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
44,
49
],
[
50,
50
],
[
50,
51
],
[
50,
52
],
[
50,
53
],
[
23,
54
],
[
54,
55
],
[
55,
56
],
[
9,
57
],
[
57,
58
],
[
0,
59
],
[
59,
60
],
[
59,
61
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class Main{\n public static void main(String[] args) {\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) { \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }\n stdReader.close();\n } catch (Exception e) {\n e.getStackTrace();\n /*返却値は0固定*/\n System.exit(0); \n }\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main{\n public static void main(String[] args) {\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) { \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }\n stdReader.close();\n } catch (Exception e) {\n e.getStackTrace();\n /*返却値は0固定*/\n System.exit(0); \n }\n }\n}",
"Main",
"public static void main(String[] args) {\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) { \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }\n stdReader.close();\n } catch (Exception e) {\n e.getStackTrace();\n /*返却値は0固定*/\n System.exit(0); \n }\n }",
"main",
"{\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) { \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }\n stdReader.close();\n } catch (Exception e) {\n e.getStackTrace();\n /*返却値は0固定*/\n System.exit(0); \n }\n }",
"try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) { \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }\n stdReader.close();\n } catch (Exception e) {\n e.getStackTrace();\n /*返却値は0固定*/\n System.exit(0); \n }",
"catch (Exception e) {\n e.getStackTrace();\n /*返却値は0固定*/\n System.exit(0); \n }",
"Exception e",
"{\n e.getStackTrace();\n /*返却値は0固定*/\n System.exit(0); \n }",
"e.getStackTrace()",
"e.getStackTrace",
"e",
"System.exit(0)",
"System.exit",
"System",
"0",
"{\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) { \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }\n stdReader.close();\n }",
"BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));",
"stdReader",
"new BufferedReader(new InputStreamReader(System.in))",
"String line;",
"line",
"while ((line = stdReader.readLine()) != null) { \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }",
"(line = stdReader.readLine()) != null",
"(line = stdReader.readLine())",
"line",
"stdReader.readLine()",
"stdReader.readLine",
"stdReader",
"null",
"{ \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }",
"int x = Integer.parseInt(line);",
"x",
"Integer.parseInt(line)",
"Integer.parseInt",
"Integer",
"line",
"System.out.println(x*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"stdReader.close()",
"stdReader.close",
"stdReader",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args) {\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) { \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }\n stdReader.close();\n } catch (Exception e) {\n e.getStackTrace();\n /*返却値は0固定*/\n System.exit(0); \n }\n }\n}",
"public class Main{\n public static void main(String[] args) {\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) { \n \t int x = Integer.parseInt(line);\n System.out.println(x*x*x);\n }\n stdReader.close();\n } catch (Exception e) {\n e.getStackTrace();\n /*返却値は0固定*/\n System.exit(0); \n }\n }\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main{
public static void main(String[] args) {
try {
BufferedReader stdReader =
new BufferedReader(new InputStreamReader(System.in));
String line;
while ((line = stdReader.readLine()) != null) {
int x = Integer.parseInt(line);
System.out.println(x*x*x);
}
stdReader.close();
} catch (Exception e) {
e.getStackTrace();
/*返却値は0固定*/
System.exit(0);
}
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
13,
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
],
[
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
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
14,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
35,
35
],
[
35,
36
],
[
35,
37
],
[
35,
38
],
[
12,
39
],
[
39,
40
],
[
0,
41
],
[
41,
42
],
[
41,
43
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\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\t\tString line = br.readLine();\n\t\t\n\t\tint num = Integer.valueOf(line);\n\t\t\n\t\tSystem.out.println(num * num * num);\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",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\t\n\t\tint num = Integer.valueOf(line);\n\t\t\n\t\tSystem.out.println(num * num * num);\n\t}\n\n}",
"Main",
"public static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\t\n\t\tint num = Integer.valueOf(line);\n\t\t\n\t\tSystem.out.println(num * num * num);\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\t\n\t\tint num = Integer.valueOf(line);\n\t\t\n\t\tSystem.out.println(num * num * num);\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String line = br.readLine();",
"line",
"br.readLine()",
"br.readLine",
"br",
"int num = Integer.valueOf(line);",
"num",
"Integer.valueOf(line)",
"Integer.valueOf",
"Integer",
"line",
"System.out.println(num * num * num)",
"System.out.println",
"System.out",
"System",
"System.out",
"num * num * num",
"num * num * num",
"num",
"num",
"num",
"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\t\tString line = br.readLine();\n\t\t\n\t\tint num = Integer.valueOf(line);\n\t\t\n\t\tSystem.out.println(num * num * num);\n\t}\n\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\t\tString line = br.readLine();\n\t\t\n\t\tint num = Integer.valueOf(line);\n\t\t\n\t\tSystem.out.println(num * num * num);\n\t}\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));
String line = br.readLine();
int num = Integer.valueOf(line);
System.out.println(num * num * num);
}
} |
[
7,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
41,
13,
17,
4,
18,
18,
13,
13,
4,
18,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
27,
2
],
[
27,
3
],
[
3,
4
],
[
3,
5
],
[
5,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
5,
11
],
[
11,
12
],
[
11,
13
],
[
5,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
14,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
19,
23
],
[
3,
24
],
[
24,
25
],
[
0,
26
],
[
26,
27
],
[
26,
28
]
] | [
"public class Main {\n public static void main(String[] args){\n double x = new java .util.Scanner(System.in).nextDouble();\n double y = 3;\n System.out.println((int)Math.pow(x, y));\n }\n}",
"public class Main {\n public static void main(String[] args){\n double x = new java .util.Scanner(System.in).nextDouble();\n double y = 3;\n System.out.println((int)Math.pow(x, y));\n }\n}",
"Main",
"public static void main(String[] args){\n double x = new java .util.Scanner(System.in).nextDouble();\n double y = 3;\n System.out.println((int)Math.pow(x, y));\n }",
"main",
"{\n double x = new java .util.Scanner(System.in).nextDouble();\n double y = 3;\n System.out.println((int)Math.pow(x, y));\n }",
"double x = new java .util.Scanner(System.in).nextDouble();",
"x",
"new java .util.Scanner(System.in).nextDouble()",
"new java .util.Scanner(System.in).nextDouble",
"new java .util.Scanner(System.in)",
"double y = 3;",
"y",
"3",
"System.out.println((int)Math.pow(x, y))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(x, y)",
"Math.pow",
"Math",
"x",
"y",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args){\n double x = new java .util.Scanner(System.in).nextDouble();\n double y = 3;\n System.out.println((int)Math.pow(x, y));\n }\n}",
"public class Main {\n public static void main(String[] args){\n double x = new java .util.Scanner(System.in).nextDouble();\n double y = 3;\n System.out.println((int)Math.pow(x, y));\n }\n}",
"Main"
] | public class Main {
public static void main(String[] args){
double x = new java .util.Scanner(System.in).nextDouble();
double y = 3;
System.out.println((int)Math.pow(x, y));
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
29,
29
],
[
29,
30
],
[
29,
31
],
[
29,
32
],
[
6,
33
],
[
33,
34
]
] | [
"import java.io.*;\n/**\n * Created by TmhrMrs on 2016/04/13.\n */\nclass Main {\n public static void main(String[] args)throws java.io.IOException{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String str = in.readLine();\n int a = Integer.parseInt(str);\n System.out.println(a*a*a);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main {\n public static void main(String[] args)throws java.io.IOException{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String str = in.readLine();\n int a = Integer.parseInt(str);\n System.out.println(a*a*a);\n }\n}",
"Main",
"public static void main(String[] args)throws java.io.IOException{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String str = in.readLine();\n int a = Integer.parseInt(str);\n System.out.println(a*a*a);\n }",
"main",
"{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String str = in.readLine();\n int a = Integer.parseInt(str);\n System.out.println(a*a*a);\n }",
"BufferedReader in = new BufferedReader(new InputStreamReader(System.in));",
"in",
"new BufferedReader(new InputStreamReader(System.in))",
"String str = in.readLine();",
"str",
"in.readLine()",
"in.readLine",
"in",
"int a = Integer.parseInt(str);",
"a",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"System.out.println(a*a*a)",
"System.out.println",
"System.out",
"System",
"System.out",
"a*a*a",
"a*a*a",
"a",
"a",
"a",
"String[] args",
"args"
] | import java.io.*;
/**
* Created by TmhrMrs on 2016/04/13.
*/
class Main {
public static void main(String[] args)throws java.io.IOException{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String str = in.readLine();
int a = Integer.parseInt(str);
System.out.println(a*a*a);
}
} |
[
7,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
41,
13,
2,
2,
13,
13,
13,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
27,
2
],
[
27,
3
],
[
3,
4
],
[
3,
5
],
[
5,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
5,
11
],
[
11,
12
],
[
11,
13
],
[
14,
14
],
[
14,
15
],
[
14,
16
],
[
14,
17
],
[
5,
18
],
[
18,
19
],
[
19,
20
],
[
20,
21
],
[
20,
22
],
[
18,
23
],
[
3,
24
],
[
24,
25
],
[
0,
26
],
[
26,
27
],
[
26,
28
]
] | [
"public class Main {\npublic static void main(String[] args){\n\t\n\tint input = new java.util.Scanner ( System.in). nextInt();\n\tint a = input * input * input;\n\tSystem.out.println(a);\n\t\n}\n}",
"public class Main {\npublic static void main(String[] args){\n\t\n\tint input = new java.util.Scanner ( System.in). nextInt();\n\tint a = input * input * input;\n\tSystem.out.println(a);\n\t\n}\n}",
"Main",
"public static void main(String[] args){\n\t\n\tint input = new java.util.Scanner ( System.in). nextInt();\n\tint a = input * input * input;\n\tSystem.out.println(a);\n\t\n}",
"main",
"{\n\t\n\tint input = new java.util.Scanner ( System.in). nextInt();\n\tint a = input * input * input;\n\tSystem.out.println(a);\n\t\n}",
"int input = new java.util.Scanner ( System.in). nextInt();",
"input",
"new java.util.Scanner ( System.in). nextInt()",
"new java.util.Scanner ( System.in). nextInt",
"new java.util.Scanner ( System.in)",
"int a = input * input * input;",
"a",
"input * input * input",
"input * input * input",
"input",
"input",
"input",
"System.out.println(a)",
"System.out.println",
"System.out",
"System",
"System.out",
"a",
"String[] args",
"args",
"public class Main {\npublic static void main(String[] args){\n\t\n\tint input = new java.util.Scanner ( System.in). nextInt();\n\tint a = input * input * input;\n\tSystem.out.println(a);\n\t\n}\n}",
"public class Main {\npublic static void main(String[] args){\n\t\n\tint input = new java.util.Scanner ( System.in). nextInt();\n\tint a = input * input * input;\n\tSystem.out.println(a);\n\t\n}\n}",
"Main"
] | public class Main {
public static void main(String[] args){
int input = new java.util.Scanner ( System.in). nextInt();
int a = input * input * input;
System.out.println(a);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
4,
18,
13,
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
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
8,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
8,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
28,
32
],
[
8,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
33,
38
],
[
6,
39
],
[
39,
40
],
[
0,
41
],
[
41,
42
],
[
41,
43
]
] | [
"import java.io.*;\npublic class Main {\n\tpublic static void main(String[] args) throws Exception {\n\tInputStreamReader isr = new InputStreamReader(System.in);\n\tBufferedReader br = new BufferedReader(isr);\n\tString buf = br.readLine();\n\tint x = Integer.parseInt(buf);\n\tint y = (int) Math.pow(x,3);\n\tSystem.out.println(y);\n\t}\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n\tpublic static void main(String[] args) throws Exception {\n\tInputStreamReader isr = new InputStreamReader(System.in);\n\tBufferedReader br = new BufferedReader(isr);\n\tString buf = br.readLine();\n\tint x = Integer.parseInt(buf);\n\tint y = (int) Math.pow(x,3);\n\tSystem.out.println(y);\n\t}\n}",
"Main",
"public static void main(String[] args) throws Exception {\n\tInputStreamReader isr = new InputStreamReader(System.in);\n\tBufferedReader br = new BufferedReader(isr);\n\tString buf = br.readLine();\n\tint x = Integer.parseInt(buf);\n\tint y = (int) Math.pow(x,3);\n\tSystem.out.println(y);\n\t}",
"main",
"{\n\tInputStreamReader isr = new InputStreamReader(System.in);\n\tBufferedReader br = new BufferedReader(isr);\n\tString buf = br.readLine();\n\tint x = Integer.parseInt(buf);\n\tint y = (int) Math.pow(x,3);\n\tSystem.out.println(y);\n\t}",
"InputStreamReader isr = new InputStreamReader(System.in);",
"isr",
"new InputStreamReader(System.in)",
"BufferedReader br = new BufferedReader(isr);",
"br",
"new BufferedReader(isr)",
"String buf = br.readLine();",
"buf",
"br.readLine()",
"br.readLine",
"br",
"int x = Integer.parseInt(buf);",
"x",
"Integer.parseInt(buf)",
"Integer.parseInt",
"Integer",
"buf",
"int y = (int) Math.pow(x,3);",
"y",
"(int) Math.pow(x,3)",
"Math.pow",
"Math",
"x",
"3",
"System.out.println(y)",
"System.out.println",
"System.out",
"System",
"System.out",
"y",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) throws Exception {\n\tInputStreamReader isr = new InputStreamReader(System.in);\n\tBufferedReader br = new BufferedReader(isr);\n\tString buf = br.readLine();\n\tint x = Integer.parseInt(buf);\n\tint y = (int) Math.pow(x,3);\n\tSystem.out.println(y);\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) throws Exception {\n\tInputStreamReader isr = new InputStreamReader(System.in);\n\tBufferedReader br = new BufferedReader(isr);\n\tString buf = br.readLine();\n\tint x = Integer.parseInt(buf);\n\tint y = (int) Math.pow(x,3);\n\tSystem.out.println(y);\n\t}\n}",
"Main"
] | import java.io.*;
public class Main {
public static void main(String[] args) throws Exception {
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
String buf = br.readLine();
int x = Integer.parseInt(buf);
int y = (int) Math.pow(x,3);
System.out.println(y);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
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
],
[
14,
15
],
[
15,
16
],
[
14,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
26,
26
],
[
26,
27
],
[
26,
28
],
[
26,
29
],
[
6,
30
],
[
30,
31
]
] | [
"import java.util.Scanner;\n\nclass Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\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 = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int x = Integer.parseInt(sc.nextLine());",
"x",
"Integer.parseInt(sc.nextLine())",
"Integer.parseInt",
"Integer",
"sc.nextLine()",
"sc.nextLine",
"sc",
"System.out.println(x * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String[] args",
"args"
] | import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = Integer.parseInt(sc.nextLine());
System.out.println(x * x * x);
}
} |
[
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,
2,
2,
13,
13,
13,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
26,
26
],
[
26,
27
],
[
26,
28
],
[
26,
29
],
[
8,
30
],
[
30,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
30,
35
],
[
6,
36
],
[
36,
37
]
] | [
"import java.util.Scanner;\nclass Main {\n public static void main(String[] args){\n Scanner r = new Scanner(System.in);\n String s = r.nextLine();\n int x = Integer.parseInt(s);\n x = x*x*x;\n \n System.out.println(x);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main {\n public static void main(String[] args){\n Scanner r = new Scanner(System.in);\n String s = r.nextLine();\n int x = Integer.parseInt(s);\n x = x*x*x;\n \n System.out.println(x);\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner r = new Scanner(System.in);\n String s = r.nextLine();\n int x = Integer.parseInt(s);\n x = x*x*x;\n \n System.out.println(x);\n }",
"main",
"{\n Scanner r = new Scanner(System.in);\n String s = r.nextLine();\n int x = Integer.parseInt(s);\n x = x*x*x;\n \n System.out.println(x);\n }",
"Scanner r = new Scanner(System.in);",
"r",
"new Scanner(System.in)",
"String s = r.nextLine();",
"s",
"r.nextLine()",
"r.nextLine",
"r",
"int x = Integer.parseInt(s);",
"x",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"x = x*x*x",
"x",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"System.out.println(x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x",
"String[] args",
"args"
] | import java.util.Scanner;
class Main {
public static void main(String[] args){
Scanner r = new Scanner(System.in);
String s = r.nextLine();
int x = Integer.parseInt(s);
x = x*x*x;
System.out.println(x);
}
} |
[
7,
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,
18,
13,
13,
17,
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
],
[
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
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
28,
32
],
[
11,
33
],
[
33,
34
],
[
34,
35
],
[
9,
36
],
[
36,
37
]
] | [
"import java.util.Scanner;\nimport java.lang.Math;\n\nclass Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n System.out.println((int)Math.pow(n, 3));\n sc.close();\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"import java.lang.Math;",
"Math",
"java.lang",
"class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n System.out.println((int)Math.pow(n, 3));\n sc.close();\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n System.out.println((int)Math.pow(n, 3));\n sc.close();\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n System.out.println((int)Math.pow(n, 3));\n sc.close();\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",
"System.out.println((int)Math.pow(n, 3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(n, 3)",
"Math.pow",
"Math",
"n",
"3",
"sc.close()",
"sc.close",
"sc",
"String[] args",
"args"
] | import java.util.Scanner;
import java.lang.Math;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = Integer.parseInt(sc.next());
System.out.println((int)Math.pow(n, 3));
sc.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
30,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
0,
13,
2,
2,
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
],
[
10,
11
],
[
10,
12
],
[
9,
13
],
[
13,
14
],
[
14,
15
],
[
13,
16
],
[
16,
17
],
[
16,
18
],
[
13,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
22,
23
],
[
21,
24
],
[
24,
25
],
[
25,
26
],
[
13,
27
],
[
27,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
27,
32
],
[
32,
33
],
[
32,
34
],
[
35,
35
],
[
35,
36
],
[
35,
37
],
[
35,
38
],
[
6,
39
],
[
39,
40
]
] | [
"import java.io.*;\nclass Main {\n public static void main(String argv[]) {\n try{\n\tint x;\n BufferedReader d =new BufferedReader(new InputStreamReader(System.in));\n\tx= Integer.parseInt(d.readLine());\n System.out.println(x=x*x*x);\n\t}catch(IOException e){}\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main {\n public static void main(String argv[]) {\n try{\n\tint x;\n BufferedReader d =new BufferedReader(new InputStreamReader(System.in));\n\tx= Integer.parseInt(d.readLine());\n System.out.println(x=x*x*x);\n\t}catch(IOException e){}\n }\n}",
"Main",
"public static void main(String argv[]) {\n try{\n\tint x;\n BufferedReader d =new BufferedReader(new InputStreamReader(System.in));\n\tx= Integer.parseInt(d.readLine());\n System.out.println(x=x*x*x);\n\t}catch(IOException e){}\n }",
"main",
"{\n try{\n\tint x;\n BufferedReader d =new BufferedReader(new InputStreamReader(System.in));\n\tx= Integer.parseInt(d.readLine());\n System.out.println(x=x*x*x);\n\t}catch(IOException e){}\n }",
"try{\n\tint x;\n BufferedReader d =new BufferedReader(new InputStreamReader(System.in));\n\tx= Integer.parseInt(d.readLine());\n System.out.println(x=x*x*x);\n\t}catch(IOException e){}",
"catch(IOException e){}",
"IOException e",
"{}",
"{\n\tint x;\n BufferedReader d =new BufferedReader(new InputStreamReader(System.in));\n\tx= Integer.parseInt(d.readLine());\n System.out.println(x=x*x*x);\n\t}",
"int x;",
"x",
"BufferedReader d =new BufferedReader(new InputStreamReader(System.in));",
"d",
"new BufferedReader(new InputStreamReader(System.in))",
"x= Integer.parseInt(d.readLine())",
"x",
"Integer.parseInt(d.readLine())",
"Integer.parseInt",
"Integer",
"d.readLine()",
"d.readLine",
"d",
"System.out.println(x=x*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x=x*x*x",
"x",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"String argv[]",
"argv"
] | import java.io.*;
class Main {
public static void main(String argv[]) {
try{
int x;
BufferedReader d =new BufferedReader(new InputStreamReader(System.in));
x= Integer.parseInt(d.readLine());
System.out.println(x=x*x*x);
}catch(IOException e){}
}
} |
[
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,
41,
13,
4,
18,
13,
13,
0,
13,
2,
2,
13,
13,
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
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
48,
11
],
[
48,
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
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
14,
32
],
[
32,
33
],
[
32,
34
],
[
35,
35
],
[
35,
36
],
[
35,
37
],
[
35,
38
],
[
14,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
39,
44
],
[
12,
45
],
[
45,
46
],
[
0,
47
],
[
47,
48
],
[
47,
49
]
] | [
"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 {\n InputStreamReader is = new InputStreamReader(System.in);\n BufferedReader br = new BufferedReader(is);\n String str = br.readLine();\n int x = Integer.parseInt(str);\n \n x =x * x * x ;\n \n System.out.println(x);\n\n\t}\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 {\n InputStreamReader is = new InputStreamReader(System.in);\n BufferedReader br = new BufferedReader(is);\n String str = br.readLine();\n int x = Integer.parseInt(str);\n \n x =x * x * x ;\n \n System.out.println(x);\n\n\t}\n}",
"Main",
"public static void main (String[] args) throws IOException\n {\n InputStreamReader is = new InputStreamReader(System.in);\n BufferedReader br = new BufferedReader(is);\n String str = br.readLine();\n int x = Integer.parseInt(str);\n \n x =x * x * x ;\n \n System.out.println(x);\n\n\t}",
"main",
"{\n InputStreamReader is = new InputStreamReader(System.in);\n BufferedReader br = new BufferedReader(is);\n String str = br.readLine();\n int x = Integer.parseInt(str);\n \n x =x * x * x ;\n \n System.out.println(x);\n\n\t}",
"InputStreamReader is = new InputStreamReader(System.in);",
"is",
"new InputStreamReader(System.in)",
"BufferedReader br = new BufferedReader(is);",
"br",
"new BufferedReader(is)",
"String str = br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"int x = Integer.parseInt(str);",
"x",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"x =x * x * x",
"x",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"System.out.println(x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x",
"String[] args",
"args",
"public class Main {\n public static void main (String[] args) throws IOException\n {\n InputStreamReader is = new InputStreamReader(System.in);\n BufferedReader br = new BufferedReader(is);\n String str = br.readLine();\n int x = Integer.parseInt(str);\n \n x =x * x * x ;\n \n System.out.println(x);\n\n\t}\n}",
"public class Main {\n public static void main (String[] args) throws IOException\n {\n InputStreamReader is = new InputStreamReader(System.in);\n BufferedReader br = new BufferedReader(is);\n String str = br.readLine();\n int x = Integer.parseInt(str);\n \n x =x * x * x ;\n \n System.out.println(x);\n\n\t}\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
{
InputStreamReader is = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(is);
String str = br.readLine();
int x = Integer.parseInt(str);
x =x * x * x ;
System.out.println(x);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
17,
38,
5,
13,
30,
4,
18,
13,
30,
0,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
13,
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
],
[
53,
11
],
[
53,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
14,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
21,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
14,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
14,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
40,
45
],
[
46,
46
],
[
46,
47
],
[
46,
48
],
[
46,
49
],
[
12,
50
],
[
50,
51
],
[
0,
52
],
[
52,
53
],
[
52,
54
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// ?¨??????\\????????????\n\t\t//BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString line = null;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tint x = Integer.parseInt(line);\n\t\t\n\t\tSystem.out.println(x*x*x);\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",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// ?¨??????\\????????????\n\t\t//BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString line = null;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tint x = Integer.parseInt(line);\n\t\t\n\t\tSystem.out.println(x*x*x);\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\t\t// ?¨??????\\????????????\n\t\t//BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString line = null;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tint x = Integer.parseInt(line);\n\t\t\n\t\tSystem.out.println(x*x*x);\n\t}",
"main",
"{\n\t\t// ?¨??????\\????????????\n\t\t//BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString line = null;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tint x = Integer.parseInt(line);\n\t\t\n\t\tSystem.out.println(x*x*x);\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String line = null;",
"line",
"null",
"try {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"IOException e",
"{\n\t\t\te.printStackTrace();\n\t\t}",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"{\n\t\t\tline = br.readLine();\n\t\t}",
"line = br.readLine()",
"line",
"br.readLine()",
"br.readLine",
"br",
"int x = Integer.parseInt(line);",
"x",
"Integer.parseInt(line)",
"Integer.parseInt",
"Integer",
"line",
"System.out.println(x*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// ?¨??????\\????????????\n\t\t//BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString line = null;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tint x = Integer.parseInt(line);\n\t\t\n\t\tSystem.out.println(x*x*x);\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// ?¨??????\\????????????\n\t\t//BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString line = null;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tint x = Integer.parseInt(line);\n\t\t\n\t\tSystem.out.println(x*x*x);\n\t}\n\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
// ?¨??????\????????????
//BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String line = null;
try {
line = br.readLine();
} catch (IOException e) {
e.printStackTrace();
}
int x = Integer.parseInt(line);
System.out.println(x*x*x);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
2,
13,
13,
13,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
26,
26
],
[
26,
27
],
[
26,
28
],
[
26,
29
],
[
8,
30
],
[
30,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
30,
35
],
[
6,
36
],
[
36,
37
]
] | [
"import java.io.*;\n\nclass Main {\n public static void main(String[] args) throws IOException {\n BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n String s = buf.readLine();\n int x = Integer.parseInt(s);\n int res = x * x * x;\n System.out.println(res);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n String s = buf.readLine();\n int x = Integer.parseInt(s);\n int res = x * x * x;\n System.out.println(res);\n }\n}",
"Main",
"public static void main(String[] args) throws IOException {\n BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n String s = buf.readLine();\n int x = Integer.parseInt(s);\n int res = x * x * x;\n System.out.println(res);\n }",
"main",
"{\n BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n String s = buf.readLine();\n int x = Integer.parseInt(s);\n int res = x * x * x;\n System.out.println(res);\n }",
"BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));",
"buf",
"new BufferedReader(new InputStreamReader(System.in))",
"String s = buf.readLine();",
"s",
"buf.readLine()",
"buf.readLine",
"buf",
"int x = Integer.parseInt(s);",
"x",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"int res = x * x * x;",
"res",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"System.out.println(res)",
"System.out.println",
"System.out",
"System",
"System.out",
"res",
"String[] args",
"args"
] | import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
String s = buf.readLine();
int x = Integer.parseInt(s);
int res = x * x * x;
System.out.println(res);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
17,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
0,
13,
13,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
25,
26
],
[
25,
27
],
[
20,
28
],
[
28,
29
],
[
29,
30
],
[
20,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
35,
40
],
[
6,
41
],
[
41,
42
]
] | [
"import java.util.*;\n\nclass Main{\npublic static void main(String[] args){\nScanner sc = new Scanner(System.in);\nint x =sc.nextInt();\nint y=1;\nfor(int i=0; i<3; i++) y *=x;\nSystem.out.println(y);\n}\n}\n\n ",
"import java.util.*;",
"util.*",
"java",
"class Main{\npublic static void main(String[] args){\nScanner sc = new Scanner(System.in);\nint x =sc.nextInt();\nint y=1;\nfor(int i=0; i<3; i++) y *=x;\nSystem.out.println(y);\n}\n}",
"Main",
"public static void main(String[] args){\nScanner sc = new Scanner(System.in);\nint x =sc.nextInt();\nint y=1;\nfor(int i=0; i<3; i++) y *=x;\nSystem.out.println(y);\n}",
"main",
"{\nScanner sc = new Scanner(System.in);\nint x =sc.nextInt();\nint y=1;\nfor(int i=0; i<3; i++) y *=x;\nSystem.out.println(y);\n}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int x =sc.nextInt();",
"x",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int y=1;",
"y",
"1",
"for(int i=0; i<3; i++) y *=x;",
"int i=0;",
"int i=0;",
"i",
"0",
"i<3",
"i",
"3",
"i++",
"i++",
"i",
"y *=x;",
"y *=x",
"y",
"x",
"System.out.println(y)",
"System.out.println",
"System.out",
"System",
"System.out",
"y",
"String[] args",
"args"
] | import java.util.*;
class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int x =sc.nextInt();
int y=1;
for(int i=0; i<3; i++) y *=x;
System.out.println(y);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
4,
18,
13,
0,
13,
2,
2,
13,
13,
13,
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
],
[
8,
11
],
[
11,
12
],
[
8,
13
],
[
13,
14
],
[
13,
15
],
[
8,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
18,
21
],
[
21,
22
],
[
22,
23
],
[
8,
24
],
[
24,
25
],
[
24,
26
],
[
27,
27
],
[
27,
28
],
[
27,
29
],
[
27,
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.io.*;\n\npublic class Main{\n public static void main(String args[])throws Exception{\n\n int i, o;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n i = Integer.parseInt(br.readLine());\n\n o = i*i*i;\n System.out.println(o);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main{\n public static void main(String args[])throws Exception{\n\n int i, o;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n i = Integer.parseInt(br.readLine());\n\n o = i*i*i;\n System.out.println(o);\n }\n}",
"Main",
"public static void main(String args[])throws Exception{\n\n int i, o;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n i = Integer.parseInt(br.readLine());\n\n o = i*i*i;\n System.out.println(o);\n }",
"main",
"{\n\n int i, o;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n i = Integer.parseInt(br.readLine());\n\n o = i*i*i;\n System.out.println(o);\n }",
"int i",
"i",
"o;",
"o",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"i = Integer.parseInt(br.readLine())",
"i",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"o = i*i*i",
"o",
"i*i*i",
"i*i*i",
"i",
"i",
"i",
"System.out.println(o)",
"System.out.println",
"System.out",
"System",
"System.out",
"o",
"String args[]",
"args",
"public class Main{\n public static void main(String args[])throws Exception{\n\n int i, o;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n i = Integer.parseInt(br.readLine());\n\n o = i*i*i;\n System.out.println(o);\n }\n}",
"public class Main{\n public static void main(String args[])throws Exception{\n\n int i, o;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n i = Integer.parseInt(br.readLine());\n\n o = i*i*i;\n System.out.println(o);\n }\n}",
"Main"
] | import java.io.*;
public class Main{
public static void main(String args[])throws Exception{
int i, o;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
i = Integer.parseInt(br.readLine());
o = i*i*i;
System.out.println(o);
}
} |
[
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,
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
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
22,
26
],
[
6,
27
],
[
27,
28
]
] | [
"import java.util.Scanner;\n\nclass Main {\n public static void main(String args[]) {\n java.util.Scanner key = new java.util.Scanner(System.in);\n int x = key.nextInt();\n\n System.out.println((int)Math.pow(x,3));\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main {\n public static void main(String args[]) {\n java.util.Scanner key = new java.util.Scanner(System.in);\n int x = key.nextInt();\n\n System.out.println((int)Math.pow(x,3));\n }\n}",
"Main",
"public static void main(String args[]) {\n java.util.Scanner key = new java.util.Scanner(System.in);\n int x = key.nextInt();\n\n System.out.println((int)Math.pow(x,3));\n }",
"main",
"{\n java.util.Scanner key = new java.util.Scanner(System.in);\n int x = key.nextInt();\n\n System.out.println((int)Math.pow(x,3));\n }",
"java.util.Scanner key = new java.util.Scanner(System.in);",
"key",
"new java.util.Scanner(System.in)",
"int x = key.nextInt();",
"x",
"key.nextInt()",
"key.nextInt",
"key",
"System.out.println((int)Math.pow(x,3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(x,3)",
"Math.pow",
"Math",
"x",
"3",
"String args[]",
"args"
] | import java.util.Scanner;
class Main {
public static void main(String args[]) {
java.util.Scanner key = new java.util.Scanner(System.in);
int x = key.nextInt();
System.out.println((int)Math.pow(x,3));
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
0,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
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
],
[
41,
8
],
[
41,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
11,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
22,
23
],
[
23,
24
],
[
11,
25
],
[
25,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
25,
30
],
[
31,
31
],
[
31,
32
],
[
31,
33
],
[
31,
34
],
[
11,
35
],
[
35,
36
],
[
36,
37
],
[
9,
38
],
[
38,
39
],
[
0,
40
],
[
40,
41
],
[
40,
42
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n \npublic class Main {\n public static void main(String[] args) throws Exception{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n int value;\n value = Integer.parseInt(in.readLine());\n System.out.println(value*value*value);\n in.close();\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n public static void main(String[] args) throws Exception{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n int value;\n value = Integer.parseInt(in.readLine());\n System.out.println(value*value*value);\n in.close();\n }\n}",
"Main",
"public static void main(String[] args) throws Exception{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n int value;\n value = Integer.parseInt(in.readLine());\n System.out.println(value*value*value);\n in.close();\n }",
"main",
"{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n int value;\n value = Integer.parseInt(in.readLine());\n System.out.println(value*value*value);\n in.close();\n }",
"BufferedReader in = new BufferedReader(new InputStreamReader(System.in));",
"in",
"new BufferedReader(new InputStreamReader(System.in))",
"int value;",
"value",
"value = Integer.parseInt(in.readLine())",
"value",
"Integer.parseInt(in.readLine())",
"Integer.parseInt",
"Integer",
"in.readLine()",
"in.readLine",
"in",
"System.out.println(value*value*value)",
"System.out.println",
"System.out",
"System",
"System.out",
"value*value*value",
"value*value*value",
"value",
"value",
"value",
"in.close()",
"in.close",
"in",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws Exception{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n int value;\n value = Integer.parseInt(in.readLine());\n System.out.println(value*value*value);\n in.close();\n }\n}",
"public class Main {\n public static void main(String[] args) throws Exception{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n int value;\n value = Integer.parseInt(in.readLine());\n System.out.println(value*value*value);\n in.close();\n }\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws Exception{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
int value;
value = Integer.parseInt(in.readLine());
System.out.println(value*value*value);
in.close();
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
12,
13,
30,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
0,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
4,
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
],
[
47,
11
],
[
47,
12
],
[
12,
13
],
[
47,
14
],
[
14,
15
],
[
14,
16
],
[
47,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
20,
22
],
[
19,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
19,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
30,
33
],
[
19,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
39,
40
],
[
40,
41
],
[
39,
42
],
[
39,
43
],
[
17,
44
],
[
44,
45
],
[
0,
46
],
[
46,
47
],
[
46,
48
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\n\npublic class Main {\n\n\tpublic Main(){}\n\tstatic int input;\n\tpublic static void main(String args[]) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=br.readLine();\n\t\tinput=Integer.parseInt(str);\n\t\tSystem.out.println((int)Math.pow(input,3));\n\t\t\n\t\t\n\t}\n\t\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\n\tpublic Main(){}\n\tstatic int input;\n\tpublic static void main(String args[]) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=br.readLine();\n\t\tinput=Integer.parseInt(str);\n\t\tSystem.out.println((int)Math.pow(input,3));\n\t\t\n\t\t\n\t}\n\t\n}",
"Main",
"static int input;",
"input",
"public Main(){}",
"Main",
"{}",
"public static void main(String args[]) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=br.readLine();\n\t\tinput=Integer.parseInt(str);\n\t\tSystem.out.println((int)Math.pow(input,3));\n\t\t\n\t\t\n\t}",
"main",
"{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=br.readLine();\n\t\tinput=Integer.parseInt(str);\n\t\tSystem.out.println((int)Math.pow(input,3));\n\t\t\n\t\t\n\t}",
"BufferedReader br=new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String str=br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"input=Integer.parseInt(str)",
"input",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"System.out.println((int)Math.pow(input,3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(input,3)",
"Math.pow",
"Math",
"input",
"3",
"String args[]",
"args",
"public class Main {\n\n\tpublic Main(){}\n\tstatic int input;\n\tpublic static void main(String args[]) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=br.readLine();\n\t\tinput=Integer.parseInt(str);\n\t\tSystem.out.println((int)Math.pow(input,3));\n\t\t\n\t\t\n\t}\n\t\n}",
"public class Main {\n\n\tpublic Main(){}\n\tstatic int input;\n\tpublic static void main(String args[]) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=br.readLine();\n\t\tinput=Integer.parseInt(str);\n\t\tSystem.out.println((int)Math.pow(input,3));\n\t\t\n\t\t\n\t}\n\t\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public Main(){}
static int input;
public static void main(String args[]) throws NumberFormatException, IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String str=br.readLine();
input=Integer.parseInt(str);
System.out.println((int)Math.pow(input,3));
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
33,
5
],
[
33,
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
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
26,
26
],
[
26,
27
],
[
26,
28
],
[
26,
29
],
[
6,
30
],
[
30,
31
],
[
0,
32
],
[
32,
33
],
[
32,
34
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int n = Integer.parseInt(scanner.next());\n\n System.out.println(n * n * n);\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 n = Integer.parseInt(scanner.next());\n\n System.out.println(n * n * n);\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int n = Integer.parseInt(scanner.next());\n\n System.out.println(n * n * n);\n }",
"main",
"{\n Scanner scanner = new Scanner(System.in);\n int n = Integer.parseInt(scanner.next());\n\n System.out.println(n * n * n);\n }",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int n = Integer.parseInt(scanner.next());",
"n",
"Integer.parseInt(scanner.next())",
"Integer.parseInt",
"Integer",
"scanner.next()",
"scanner.next",
"scanner",
"System.out.println(n * n * n)",
"System.out.println",
"System.out",
"System",
"System.out",
"n * n * n",
"n * n * n",
"n",
"n",
"n",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int n = Integer.parseInt(scanner.next());\n\n System.out.println(n * n * n);\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int n = Integer.parseInt(scanner.next());\n\n System.out.println(n * n * n);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = Integer.parseInt(scanner.next());
System.out.println(n * n * n);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
17,
41,
13,
41,
13,
17,
42,
2,
13,
17,
30,
41,
13,
20,
0,
13,
4,
18,
13,
4,
18,
13,
14,
2,
2,
13,
17,
2,
13,
17,
0,
13,
40,
17,
0,
13,
2,
2,
13,
13,
13,
4,
18,
18,
13,
13,
2,
2,
17,
13,
17,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
65,
5
],
[
65,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
8,
14
],
[
14,
15
],
[
14,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
17,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
21,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
27,
30
],
[
30,
31
],
[
31,
32
],
[
21,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
34,
38
],
[
38,
39
],
[
38,
40
],
[
33,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
8,
45
],
[
45,
46
],
[
45,
47
],
[
48,
48
],
[
48,
49
],
[
48,
50
],
[
48,
51
],
[
8,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
52,
57
],
[
58,
58
],
[
58,
59
],
[
58,
60
],
[
58,
61
],
[
6,
62
],
[
62,
63
],
[
0,
64
],
[
64,
65
],
[
64,
66
]
] | [
"import java.io.*;\npublic class Main{\n public static void main(String[] args) throws IOException{\n int i = 1;\n int xcubic;\n int a = 0;\n while(i>0){\n BufferedReader x = new BufferedReader(new InputStreamReader(System.in));\n a = Integer.parseInt(x.readLine()); \n if(a >= 1 && a <= 100 )\n i = -1;\n }\n xcubic = a*a*a;\n System.out.println(\"\"+xcubic+\"\");\n }\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main{\n public static void main(String[] args) throws IOException{\n int i = 1;\n int xcubic;\n int a = 0;\n while(i>0){\n BufferedReader x = new BufferedReader(new InputStreamReader(System.in));\n a = Integer.parseInt(x.readLine()); \n if(a >= 1 && a <= 100 )\n i = -1;\n }\n xcubic = a*a*a;\n System.out.println(\"\"+xcubic+\"\");\n }\n}",
"Main",
"public static void main(String[] args) throws IOException{\n int i = 1;\n int xcubic;\n int a = 0;\n while(i>0){\n BufferedReader x = new BufferedReader(new InputStreamReader(System.in));\n a = Integer.parseInt(x.readLine()); \n if(a >= 1 && a <= 100 )\n i = -1;\n }\n xcubic = a*a*a;\n System.out.println(\"\"+xcubic+\"\");\n }",
"main",
"{\n int i = 1;\n int xcubic;\n int a = 0;\n while(i>0){\n BufferedReader x = new BufferedReader(new InputStreamReader(System.in));\n a = Integer.parseInt(x.readLine()); \n if(a >= 1 && a <= 100 )\n i = -1;\n }\n xcubic = a*a*a;\n System.out.println(\"\"+xcubic+\"\");\n }",
"int i = 1;",
"i",
"1",
"int xcubic;",
"xcubic",
"int a = 0;",
"a",
"0",
"while(i>0){\n BufferedReader x = new BufferedReader(new InputStreamReader(System.in));\n a = Integer.parseInt(x.readLine()); \n if(a >= 1 && a <= 100 )\n i = -1;\n }",
"i>0",
"i",
"0",
"{\n BufferedReader x = new BufferedReader(new InputStreamReader(System.in));\n a = Integer.parseInt(x.readLine()); \n if(a >= 1 && a <= 100 )\n i = -1;\n }",
"BufferedReader x = new BufferedReader(new InputStreamReader(System.in));",
"x",
"new BufferedReader(new InputStreamReader(System.in))",
"a = Integer.parseInt(x.readLine())",
"a",
"Integer.parseInt(x.readLine())",
"Integer.parseInt",
"Integer",
"x.readLine()",
"x.readLine",
"x",
"if(a >= 1 && a <= 100 )\n i = -1;",
"a >= 1 && a <= 100",
"a >= 1",
"a",
"1",
"a <= 100",
"a",
"100",
"i = -1",
"i",
"-1",
"1",
"xcubic = a*a*a",
"xcubic",
"a*a*a",
"a*a*a",
"a",
"a",
"a",
"System.out.println(\"\"+xcubic+\"\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"\"+xcubic+\"\"",
"\"\"+xcubic+\"\"",
"\"\"",
"xcubic",
"\"\"",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args) throws IOException{\n int i = 1;\n int xcubic;\n int a = 0;\n while(i>0){\n BufferedReader x = new BufferedReader(new InputStreamReader(System.in));\n a = Integer.parseInt(x.readLine()); \n if(a >= 1 && a <= 100 )\n i = -1;\n }\n xcubic = a*a*a;\n System.out.println(\"\"+xcubic+\"\");\n }\n}",
"public class Main{\n public static void main(String[] args) throws IOException{\n int i = 1;\n int xcubic;\n int a = 0;\n while(i>0){\n BufferedReader x = new BufferedReader(new InputStreamReader(System.in));\n a = Integer.parseInt(x.readLine()); \n if(a >= 1 && a <= 100 )\n i = -1;\n }\n xcubic = a*a*a;\n System.out.println(\"\"+xcubic+\"\");\n }\n}",
"Main"
] | import java.io.*;
public class Main{
public static void main(String[] args) throws IOException{
int i = 1;
int xcubic;
int a = 0;
while(i>0){
BufferedReader x = new BufferedReader(new InputStreamReader(System.in));
a = Integer.parseInt(x.readLine());
if(a >= 1 && a <= 100 )
i = -1;
}
xcubic = a*a*a;
System.out.println(""+xcubic+"");
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
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
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
6,
27
],
[
27,
28
],
[
0,
29
],
[
29,
30
],
[
29,
31
]
] | [
"import java.util.Scanner;\n\n/**\n * Created by hwzheng on 2016/12/13.\n */\npublic class Main {\n public static void main(String[] a) {\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n System.out.println(i * i * i);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] a) {\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n System.out.println(i * i * i);\n }\n}",
"Main",
"public static void main(String[] a) {\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n System.out.println(i * i * i);\n }",
"main",
"{\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n System.out.println(i * i * i);\n }",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int i = scanner.nextInt();",
"i",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"System.out.println(i * i * i)",
"System.out.println",
"System.out",
"System",
"System.out",
"i * i * i",
"i * i * i",
"i",
"i",
"i",
"String[] a",
"a",
"public class Main {\n public static void main(String[] a) {\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n System.out.println(i * i * i);\n }\n}",
"public class Main {\n public static void main(String[] a) {\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n System.out.println(i * i * i);\n }\n}",
"Main"
] | import java.util.Scanner;
/**
* Created by hwzheng on 2016/12/13.
*/
public class Main {
public static void main(String[] a) {
Scanner scanner = new Scanner(System.in);
int i = scanner.nextInt();
System.out.println(i * i * i);
}
} |
[
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,
2,
2,
13,
13,
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
],
[
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
],
[
32,
32
],
[
32,
33
],
[
32,
34
],
[
32,
35
],
[
15,
36
],
[
36,
37
]
] | [
"import java.awt.*;\nimport java.awt.geom.*;\nimport java.io.*;\n\nimport java.util.*;\nclass Main {\n\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n\t\tSystem.out.println(n * n * n);\n\t}\n}",
"import java.awt.*;",
"awt.*",
"java",
"import java.awt.geom.*;",
"geom.*",
"java.awt",
"import java.io.*;",
"io.*",
"java",
"import java.util.*;",
"util.*",
"java",
"class Main {\n\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n\t\tSystem.out.println(n * n * 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\t\tSystem.out.println(n * n * n);\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint n = sc.nextInt();\n\t\tSystem.out.println(n * n * n);\n\t}",
"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 * n * n)",
"System.out.println",
"System.out",
"System",
"System.out",
"n * n * n",
"n * n * n",
"n",
"n",
"n",
"String[] args",
"args"
] | import java.awt.*;
import java.awt.geom.*;
import java.io.*;
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println(n * n * n);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
13,
17,
4,
18,
18,
13,
13,
13,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
44,
5
],
[
44,
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
],
[
24,
25
],
[
25,
26
],
[
24,
27
],
[
27,
28
],
[
28,
29
],
[
27,
30
],
[
24,
31
],
[
13,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
32,
37
],
[
13,
38
],
[
38,
39
],
[
39,
40
],
[
6,
41
],
[
41,
42
],
[
0,
43
],
[
43,
44
],
[
43,
45
]
] | [
"import java.io.*;\n \npublic class Main {\n public static void main(String[] args){\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String textline = br.readLine();\n double x = Math.pow(Integer.parseInt(textline), 3);\n System.out.println((int)x);\n br.close();\n }\n catch(IOException e){};\n }\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n public static void main(String[] args){\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String textline = br.readLine();\n double x = Math.pow(Integer.parseInt(textline), 3);\n System.out.println((int)x);\n br.close();\n }\n catch(IOException e){};\n }\n}",
"Main",
"public static void main(String[] args){\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String textline = br.readLine();\n double x = Math.pow(Integer.parseInt(textline), 3);\n System.out.println((int)x);\n br.close();\n }\n catch(IOException e){};\n }",
"main",
"{\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String textline = br.readLine();\n double x = Math.pow(Integer.parseInt(textline), 3);\n System.out.println((int)x);\n br.close();\n }\n catch(IOException e){};\n }",
"try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String textline = br.readLine();\n double x = Math.pow(Integer.parseInt(textline), 3);\n System.out.println((int)x);\n br.close();\n }\n catch(IOException e){}",
"catch(IOException e){}",
"IOException e",
"{}",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String textline = br.readLine();\n double x = Math.pow(Integer.parseInt(textline), 3);\n System.out.println((int)x);\n br.close();\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String textline = br.readLine();",
"textline",
"br.readLine()",
"br.readLine",
"br",
"double x = Math.pow(Integer.parseInt(textline), 3);",
"x",
"Math.pow(Integer.parseInt(textline), 3)",
"Math.pow",
"Math",
"Integer.parseInt(textline)",
"Integer.parseInt",
"Integer",
"textline",
"3",
"System.out.println((int)x)",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)x",
"br.close()",
"br.close",
"br",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args){\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String textline = br.readLine();\n double x = Math.pow(Integer.parseInt(textline), 3);\n System.out.println((int)x);\n br.close();\n }\n catch(IOException e){};\n }\n}",
"public class Main {\n public static void main(String[] args){\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String textline = br.readLine();\n double x = Math.pow(Integer.parseInt(textline), 3);\n System.out.println((int)x);\n br.close();\n }\n catch(IOException e){};\n }\n}",
"Main"
] | import java.io.*;
public class Main {
public static void main(String[] args){
try{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String textline = br.readLine();
double x = Math.pow(Integer.parseInt(textline), 3);
System.out.println((int)x);
br.close();
}
catch(IOException e){};
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
4,
13,
23,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
4,
18,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
38,
5
],
[
38,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
6,
11
],
[
11,
12
],
[
38,
13
],
[
13,
14
],
[
13,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
15,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
22,
23
],
[
15,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
24,
29
],
[
30,
30
],
[
30,
31
],
[
30,
32
],
[
30,
33
],
[
15,
34
],
[
34,
35
],
[
35,
36
],
[
0,
37
],
[
37,
38
],
[
37,
39
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tsolve();\n\t}\n\n\tprivate static void solve() {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint x = scn.nextInt();\n\t\tSystem.out.println(x*x*x);\n\t\tscn.close();\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tsolve();\n\t}\n\n\tprivate static void solve() {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint x = scn.nextInt();\n\t\tSystem.out.println(x*x*x);\n\t\tscn.close();\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\t\tsolve();\n\t}",
"main",
"{\n\t\tsolve();\n\t}",
"solve()",
"solve",
"String[] args",
"args",
"private static void solve() {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint x = scn.nextInt();\n\t\tSystem.out.println(x*x*x);\n\t\tscn.close();\n\t}",
"solve",
"{\n\t\tScanner scn = new Scanner(System.in);\n\t\tint x = scn.nextInt();\n\t\tSystem.out.println(x*x*x);\n\t\tscn.close();\n\t}",
"Scanner scn = new Scanner(System.in);",
"scn",
"new Scanner(System.in)",
"int x = scn.nextInt();",
"x",
"scn.nextInt()",
"scn.nextInt",
"scn",
"System.out.println(x*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"scn.close()",
"scn.close",
"scn",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tsolve();\n\t}\n\n\tprivate static void solve() {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint x = scn.nextInt();\n\t\tSystem.out.println(x*x*x);\n\t\tscn.close();\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tsolve();\n\t}\n\n\tprivate static void solve() {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint x = scn.nextInt();\n\t\tSystem.out.println(x*x*x);\n\t\tscn.close();\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
solve();
}
private static void solve() {
Scanner scn = new Scanner(System.in);
int x = scn.nextInt();
System.out.println(x*x*x);
scn.close();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
29,
2,
2,
13,
13,
13,
12,
13,
30,
41,
13,
20,
4,
18,
18,
13,
13,
4,
18,
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
],
[
19,
19
],
[
19,
20
],
[
19,
21
],
[
19,
22
],
[
40,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
25,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
34,
35
],
[
35,
36
],
[
23,
37
],
[
37,
38
],
[
0,
39
],
[
39,
40
],
[
39,
41
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\tprivate int calc(){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint x =scanner.nextInt();\n\t\treturn x*x*x;\n\t}\n\t\n\tpublic static void main(String[] args) {\n\t\tMain cubic =new Main();\n\t\tSystem.out.println(cubic.calc());\n\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\tprivate int calc(){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint x =scanner.nextInt();\n\t\treturn x*x*x;\n\t}\n\t\n\tpublic static void main(String[] args) {\n\t\tMain cubic =new Main();\n\t\tSystem.out.println(cubic.calc());\n\n\t}\n\n}",
"Main",
"private int calc(){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint x =scanner.nextInt();\n\t\treturn x*x*x;\n\t}",
"calc",
"{\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint x =scanner.nextInt();\n\t\treturn x*x*x;\n\t}",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int x =scanner.nextInt();",
"x",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"return x*x*x;",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"public static void main(String[] args) {\n\t\tMain cubic =new Main();\n\t\tSystem.out.println(cubic.calc());\n\n\t}",
"main",
"{\n\t\tMain cubic =new Main();\n\t\tSystem.out.println(cubic.calc());\n\n\t}",
"Main cubic =new Main();",
"cubic",
"new Main()",
"System.out.println(cubic.calc())",
"System.out.println",
"System.out",
"System",
"System.out",
"cubic.calc()",
"cubic.calc",
"cubic",
"String[] args",
"args",
"public class Main {\n\tprivate int calc(){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint x =scanner.nextInt();\n\t\treturn x*x*x;\n\t}\n\t\n\tpublic static void main(String[] args) {\n\t\tMain cubic =new Main();\n\t\tSystem.out.println(cubic.calc());\n\n\t}\n\n}",
"public class Main {\n\tprivate int calc(){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint x =scanner.nextInt();\n\t\treturn x*x*x;\n\t}\n\t\n\tpublic static void main(String[] args) {\n\t\tMain cubic =new Main();\n\t\tSystem.out.println(cubic.calc());\n\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main {
private int calc(){
Scanner scanner = new Scanner(System.in);
int x =scanner.nextInt();
return x*x*x;
}
public static void main(String[] args) {
Main cubic =new Main();
System.out.println(cubic.calc());
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
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
],
[
20,
21
],
[
21,
22
],
[
14,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
14,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
35,
35
],
[
35,
36
],
[
35,
37
],
[
35,
38
],
[
12,
39
],
[
39,
40
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\nclass Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString strNum = br.readLine();\n\t\tInteger num = Integer.parseInt(strNum);\n\t\tSystem.out.println(num*num*num);\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",
"class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString strNum = br.readLine();\n\t\tInteger num = Integer.parseInt(strNum);\n\t\tSystem.out.println(num*num*num);\n\t}\n\n}",
"Main",
"public static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString strNum = br.readLine();\n\t\tInteger num = Integer.parseInt(strNum);\n\t\tSystem.out.println(num*num*num);\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString strNum = br.readLine();\n\t\tInteger num = Integer.parseInt(strNum);\n\t\tSystem.out.println(num*num*num);\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String strNum = br.readLine();",
"strNum",
"br.readLine()",
"br.readLine",
"br",
"Integer num = Integer.parseInt(strNum);",
"num",
"Integer.parseInt(strNum)",
"Integer.parseInt",
"Integer",
"strNum",
"System.out.println(num*num*num)",
"System.out.println",
"System.out",
"System",
"System.out",
"num*num*num",
"num*num*num",
"num",
"num",
"num",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String strNum = br.readLine();
Integer num = Integer.parseInt(strNum);
System.out.println(num*num*num);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
13,
40,
17,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
2,
13,
13,
13,
4,
18,
18,
13,
13,
13,
4,
18,
13,
17,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
56,
8
],
[
56,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
13,
14
],
[
13,
15
],
[
15,
16
],
[
16,
17
],
[
17,
18
],
[
16,
19
],
[
19,
20
],
[
12,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
21,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
21,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
32,
35
],
[
21,
36
],
[
36,
37
],
[
36,
38
],
[
39,
39
],
[
39,
40
],
[
39,
41
],
[
39,
42
],
[
21,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
21,
49
],
[
49,
50
],
[
50,
51
],
[
49,
52
],
[
9,
53
],
[
53,
54
],
[
0,
55
],
[
55,
56
],
[
55,
57
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class Main {\n public static void main(String[] args) {\n try {\n BufferedReader stdReader = \n new BufferedReader( new InputStreamReader(System.in));\n String seedStr = stdReader.readLine();\n\n Integer seed = Integer.valueOf(seedStr);\n Integer cubicSeed = seed * seed * seed; \n System.out.println(cubicSeed);\n System.exit(0);\n\n } catch (Exception e) {\n System.exit(-1);\n }\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n public static void main(String[] args) {\n try {\n BufferedReader stdReader = \n new BufferedReader( new InputStreamReader(System.in));\n String seedStr = stdReader.readLine();\n\n Integer seed = Integer.valueOf(seedStr);\n Integer cubicSeed = seed * seed * seed; \n System.out.println(cubicSeed);\n System.exit(0);\n\n } catch (Exception e) {\n System.exit(-1);\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n try {\n BufferedReader stdReader = \n new BufferedReader( new InputStreamReader(System.in));\n String seedStr = stdReader.readLine();\n\n Integer seed = Integer.valueOf(seedStr);\n Integer cubicSeed = seed * seed * seed; \n System.out.println(cubicSeed);\n System.exit(0);\n\n } catch (Exception e) {\n System.exit(-1);\n }\n }",
"main",
"{\n try {\n BufferedReader stdReader = \n new BufferedReader( new InputStreamReader(System.in));\n String seedStr = stdReader.readLine();\n\n Integer seed = Integer.valueOf(seedStr);\n Integer cubicSeed = seed * seed * seed; \n System.out.println(cubicSeed);\n System.exit(0);\n\n } catch (Exception e) {\n System.exit(-1);\n }\n }",
"try {\n BufferedReader stdReader = \n new BufferedReader( new InputStreamReader(System.in));\n String seedStr = stdReader.readLine();\n\n Integer seed = Integer.valueOf(seedStr);\n Integer cubicSeed = seed * seed * seed; \n System.out.println(cubicSeed);\n System.exit(0);\n\n } catch (Exception e) {\n System.exit(-1);\n }",
"catch (Exception e) {\n System.exit(-1);\n }",
"Exception e",
"{\n System.exit(-1);\n }",
"System.exit(-1)",
"System.exit",
"System",
"-1",
"1",
"{\n BufferedReader stdReader = \n new BufferedReader( new InputStreamReader(System.in));\n String seedStr = stdReader.readLine();\n\n Integer seed = Integer.valueOf(seedStr);\n Integer cubicSeed = seed * seed * seed; \n System.out.println(cubicSeed);\n System.exit(0);\n\n }",
"BufferedReader stdReader = \n new BufferedReader( new InputStreamReader(System.in));",
"stdReader",
"new BufferedReader( new InputStreamReader(System.in))",
"String seedStr = stdReader.readLine();",
"seedStr",
"stdReader.readLine()",
"stdReader.readLine",
"stdReader",
"Integer seed = Integer.valueOf(seedStr);",
"seed",
"Integer.valueOf(seedStr)",
"Integer.valueOf",
"Integer",
"seedStr",
"Integer cubicSeed = seed * seed * seed;",
"cubicSeed",
"seed * seed * seed",
"seed * seed * seed",
"seed",
"seed",
"seed",
"System.out.println(cubicSeed)",
"System.out.println",
"System.out",
"System",
"System.out",
"cubicSeed",
"System.exit(0)",
"System.exit",
"System",
"0",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n try {\n BufferedReader stdReader = \n new BufferedReader( new InputStreamReader(System.in));\n String seedStr = stdReader.readLine();\n\n Integer seed = Integer.valueOf(seedStr);\n Integer cubicSeed = seed * seed * seed; \n System.out.println(cubicSeed);\n System.exit(0);\n\n } catch (Exception e) {\n System.exit(-1);\n }\n }\n}",
"public class Main {\n public static void main(String[] args) {\n try {\n BufferedReader stdReader = \n new BufferedReader( new InputStreamReader(System.in));\n String seedStr = stdReader.readLine();\n\n Integer seed = Integer.valueOf(seedStr);\n Integer cubicSeed = seed * seed * seed; \n System.out.println(cubicSeed);\n System.exit(0);\n\n } catch (Exception e) {\n System.exit(-1);\n }\n }\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
try {
BufferedReader stdReader =
new BufferedReader( new InputStreamReader(System.in));
String seedStr = stdReader.readLine();
Integer seed = Integer.valueOf(seedStr);
Integer cubicSeed = seed * seed * seed;
System.out.println(cubicSeed);
System.exit(0);
} catch (Exception e) {
System.exit(-1);
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
4,
13,
4,
13,
13,
12,
13,
30,
41,
13,
20,
29,
4,
18,
13,
12,
13,
30,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
23,
13,
6,
13,
12,
13,
30,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
8,
13
],
[
13,
14
],
[
13,
15
],
[
4,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
18,
22
],
[
22,
23
],
[
23,
24
],
[
24,
25
],
[
4,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
35,
35
],
[
35,
36
],
[
35,
37
],
[
35,
38
],
[
26,
39
],
[
39,
40
],
[
0,
41
],
[
52,
42
],
[
52,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
43,
49
],
[
49,
50
],
[
0,
51
],
[
51,
52
],
[
51,
53
]
] | [
"import java.util.Scanner;\n\n/**\n * Created by ui on 2016/02/03.\n */\n class XCubic {\n \n\n static void run () {\n int xc = readInput();\n printCubic(xc);\n }\n static int readInput() {\n Scanner sc = new Scanner(System.in);\n return sc.nextInt();\n }\n static void printCubic (int x){\n System.out.println(x*x*x);\n }\n}\npublic class Main {\n public static void main(String[] args) {\n XCubic.run();\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
" class XCubic {\n \n\n static void run () {\n int xc = readInput();\n printCubic(xc);\n }\n static int readInput() {\n Scanner sc = new Scanner(System.in);\n return sc.nextInt();\n }\n static void printCubic (int x){\n System.out.println(x*x*x);\n }\n}",
"XCubic",
"static void run () {\n int xc = readInput();\n printCubic(xc);\n }",
"run",
"{\n int xc = readInput();\n printCubic(xc);\n }",
"int xc = readInput();",
"xc",
"readInput()",
"readInput",
"printCubic(xc)",
"printCubic",
"xc",
"static int readInput() {\n Scanner sc = new Scanner(System.in);\n return sc.nextInt();\n }",
"readInput",
"{\n Scanner sc = new Scanner(System.in);\n return sc.nextInt();\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"return sc.nextInt();",
"sc.nextInt()",
"sc.nextInt",
"sc",
"static void printCubic (int x){\n System.out.println(x*x*x);\n }",
"printCubic",
"{\n System.out.println(x*x*x);\n }",
"System.out.println(x*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"int x",
"x",
"public class Main {\n public static void main(String[] args) {\n XCubic.run();\n }\n}",
"Main",
"public static void main(String[] args) {\n XCubic.run();\n }",
"main",
"{\n XCubic.run();\n }",
"XCubic.run()",
"XCubic.run",
"XCubic",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n XCubic.run();\n }\n}",
"public class Main {\n public static void main(String[] args) {\n XCubic.run();\n }\n}",
"Main"
] | import java.util.Scanner;
/**
* Created by ui on 2016/02/03.
*/
class XCubic {
static void run () {
int xc = readInput();
printCubic(xc);
}
static int readInput() {
Scanner sc = new Scanner(System.in);
return sc.nextInt();
}
static void printCubic (int x){
System.out.println(x*x*x);
}
}
public class Main {
public static void main(String[] args) {
XCubic.run();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
0,
13,
4,
18,
13,
13,
0,
13,
2,
2,
13,
13,
13,
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
],
[
8,
11
],
[
11,
12
],
[
8,
13
],
[
13,
14
],
[
8,
15
],
[
15,
16
],
[
15,
17
],
[
8,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
32,
32
],
[
32,
33
],
[
32,
34
],
[
32,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
6,
42
],
[
42,
43
],
[
0,
44
],
[
44,
45
],
[
44,
46
]
] | [
"import java.io.*;\n \npublic class Main\n{\n public static void main(String[] args) throws IOException\n {\n String s;\n int a;\n int b;\n BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));\n s=buf.readLine();\n a=Integer.parseInt(s);\n b=a*a*a;\n System.out.println(b);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main\n{\n public static void main(String[] args) throws IOException\n {\n String s;\n int a;\n int b;\n BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));\n s=buf.readLine();\n a=Integer.parseInt(s);\n b=a*a*a;\n System.out.println(b);\n }\n}",
"Main",
"public static void main(String[] args) throws IOException\n {\n String s;\n int a;\n int b;\n BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));\n s=buf.readLine();\n a=Integer.parseInt(s);\n b=a*a*a;\n System.out.println(b);\n }",
"main",
"{\n String s;\n int a;\n int b;\n BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));\n s=buf.readLine();\n a=Integer.parseInt(s);\n b=a*a*a;\n System.out.println(b);\n }",
"String s;",
"s",
"int a;",
"a",
"int b;",
"b",
"BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));",
"buf",
"new BufferedReader (new InputStreamReader(System.in))",
"s=buf.readLine()",
"s",
"buf.readLine()",
"buf.readLine",
"buf",
"a=Integer.parseInt(s)",
"a",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"b=a*a*a",
"b",
"a*a*a",
"a*a*a",
"a",
"a",
"a",
"System.out.println(b)",
"System.out.println",
"System.out",
"System",
"System.out",
"b",
"String[] args",
"args",
"public class Main\n{\n public static void main(String[] args) throws IOException\n {\n String s;\n int a;\n int b;\n BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));\n s=buf.readLine();\n a=Integer.parseInt(s);\n b=a*a*a;\n System.out.println(b);\n }\n}",
"public class Main\n{\n public static void main(String[] args) throws IOException\n {\n String s;\n int a;\n int b;\n BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));\n s=buf.readLine();\n a=Integer.parseInt(s);\n b=a*a*a;\n System.out.println(b);\n }\n}",
"Main"
] | import java.io.*;
public class Main
{
public static void main(String[] args) throws IOException
{
String s;
int a;
int b;
BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));
s=buf.readLine();
a=Integer.parseInt(s);
b=a*a*a;
System.out.println(b);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
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
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
6,
27
],
[
27,
28
],
[
0,
29
],
[
29,
30
],
[
29,
31
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int x = sc.nextInt();\n System.out.println(x * x * x);\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\n int x = sc.nextInt();\n System.out.println(x * x * x);\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int x = sc.nextInt();\n System.out.println(x * x * x);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n\n int x = sc.nextInt();\n System.out.println(x * x * x);\n }",
"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 * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int x = sc.nextInt();\n System.out.println(x * x * x);\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int x = sc.nextInt();\n System.out.println(x * x * x);\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();
System.out.println(x * x * x);
}
}
|
[
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,
2,
2,
13,
13,
13,
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
],
[
40,
8
],
[
40,
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
],
[
23,
26
],
[
27,
27
],
[
27,
28
],
[
27,
29
],
[
27,
30
],
[
11,
31
],
[
31,
32
],
[
32,
33
],
[
11,
34
],
[
34,
35
],
[
35,
36
],
[
9,
37
],
[
37,
38
],
[
0,
39
],
[
39,
40
],
[
39,
41
]
] | [
"import java.io.PrintWriter;\nimport java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner in = new Scanner(System.in);\n\t\tPrintWriter out = new PrintWriter(System.out);\n int x = in.nextInt();\n out.println(x*x*x);\n out.flush();\n in.close();\n\t}\n}",
"import java.io.PrintWriter;",
"PrintWriter",
"java.io",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner in = new Scanner(System.in);\n\t\tPrintWriter out = new PrintWriter(System.out);\n int x = in.nextInt();\n out.println(x*x*x);\n out.flush();\n in.close();\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner in = new Scanner(System.in);\n\t\tPrintWriter out = new PrintWriter(System.out);\n int x = in.nextInt();\n out.println(x*x*x);\n out.flush();\n in.close();\n\t}",
"main",
"{\n\t\tScanner in = new Scanner(System.in);\n\t\tPrintWriter out = new PrintWriter(System.out);\n int x = in.nextInt();\n out.println(x*x*x);\n out.flush();\n in.close();\n\t}",
"Scanner in = new Scanner(System.in);",
"in",
"new Scanner(System.in)",
"PrintWriter out = new PrintWriter(System.out);",
"out",
"new PrintWriter(System.out)",
"int x = in.nextInt();",
"x",
"in.nextInt()",
"in.nextInt",
"in",
"out.println(x*x*x)",
"out.println",
"out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"out.flush()",
"out.flush",
"out",
"in.close()",
"in.close",
"in",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner in = new Scanner(System.in);\n\t\tPrintWriter out = new PrintWriter(System.out);\n int x = in.nextInt();\n out.println(x*x*x);\n out.flush();\n in.close();\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner in = new Scanner(System.in);\n\t\tPrintWriter out = new PrintWriter(System.out);\n int x = in.nextInt();\n out.println(x*x*x);\n out.flush();\n in.close();\n\t}\n}",
"Main"
] | import java.io.PrintWriter;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
PrintWriter out = new PrintWriter(System.out);
int x = in.nextInt();
out.println(x*x*x);
out.flush();
in.close();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
2,
13,
13,
13,
4,
18,
18,
13,
13,
17,
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
],
[
17,
19
],
[
20,
20
],
[
20,
21
],
[
20,
22
],
[
20,
23
],
[
8,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
24,
29
],
[
24,
30
],
[
6,
31
],
[
31,
32
],
[
0,
33
],
[
33,
34
],
[
33,
35
]
] | [
"import java.util.Scanner;\n\npublic class Main\n{\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint num = sc.nextInt();\n\t\tint ans = num * num * num;\n\n\t\tSystem.out.printf(\"%d\\n\", ans);\n\n\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{\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint num = sc.nextInt();\n\t\tint ans = num * num * num;\n\n\t\tSystem.out.printf(\"%d\\n\", ans);\n\n\t}\n\t\n\n}",
"Main",
"public static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint num = sc.nextInt();\n\t\tint ans = num * num * num;\n\n\t\tSystem.out.printf(\"%d\\n\", ans);\n\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint num = sc.nextInt();\n\t\tint ans = num * num * num;\n\n\t\tSystem.out.printf(\"%d\\n\", ans);\n\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int num = sc.nextInt();",
"num",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int ans = num * num * num;",
"ans",
"num * num * num",
"num * num * num",
"num",
"num",
"num",
"System.out.printf(\"%d\\n\", ans)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d\\n\"",
"ans",
"String[] args",
"args",
"public class Main\n{\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint num = sc.nextInt();\n\t\tint ans = num * num * num;\n\n\t\tSystem.out.printf(\"%d\\n\", ans);\n\n\t}\n\t\n\n}",
"public class Main\n{\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint num = sc.nextInt();\n\t\tint ans = num * num * num;\n\n\t\tSystem.out.printf(\"%d\\n\", ans);\n\n\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 num = sc.nextInt();
int ans = num * num * num;
System.out.printf("%d\n", 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,
2,
2,
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
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
26,
26
],
[
26,
27
],
[
26,
28
],
[
26,
29
],
[
9,
30
],
[
30,
31
]
] | [
"import java.io.IOException;\nimport java.util.Scanner;\n\nclass Main{\n public static void main(String[] args) throws IOException {\n Scanner scan = new Scanner(System.in);\n int v1 = scan.nextInt();\n System.out.println(v1*v1*v1);\n }\n}",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\n public static void main(String[] args) throws IOException {\n Scanner scan = new Scanner(System.in);\n int v1 = scan.nextInt();\n System.out.println(v1*v1*v1);\n }\n}",
"Main",
"public static void main(String[] args) throws IOException {\n Scanner scan = new Scanner(System.in);\n int v1 = scan.nextInt();\n System.out.println(v1*v1*v1);\n }",
"main",
"{\n Scanner scan = new Scanner(System.in);\n int v1 = scan.nextInt();\n System.out.println(v1*v1*v1);\n }",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int v1 = scan.nextInt();",
"v1",
"scan.nextInt()",
"scan.nextInt",
"scan",
"System.out.println(v1*v1*v1)",
"System.out.println",
"System.out",
"System",
"System.out",
"v1*v1*v1",
"v1*v1*v1",
"v1",
"v1",
"v1",
"String[] args",
"args"
] | import java.io.IOException;
import java.util.Scanner;
class Main{
public static void main(String[] args) throws IOException {
Scanner scan = new Scanner(System.in);
int v1 = scan.nextInt();
System.out.println(v1*v1*v1);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
38,
5,
13,
30,
5,
13,
30,
30,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
44,
5
],
[
44,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
13,
14
],
[
13,
15
],
[
12,
16
],
[
16,
17
],
[
16,
18
],
[
12,
19
],
[
19,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
19,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
27,
30
],
[
19,
31
],
[
31,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
31,
36
],
[
37,
37
],
[
37,
38
],
[
37,
39
],
[
37,
40
],
[
6,
41
],
[
41,
42
],
[
0,
43
],
[
43,
44
],
[
43,
45
]
] | [
"import java.io.*;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tString line = reader.readLine();\n\t\t\tint x = Integer.parseInt(line);\n\t\t\tSystem.out.println(x * x * x);\n\t\t} catch (IOException e) {\n\t\t} catch (NumberFormatException e) {\n\t\t}\n\t}\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tString line = reader.readLine();\n\t\t\tint x = Integer.parseInt(line);\n\t\t\tSystem.out.println(x * x * x);\n\t\t} catch (IOException e) {\n\t\t} catch (NumberFormatException e) {\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tString line = reader.readLine();\n\t\t\tint x = Integer.parseInt(line);\n\t\t\tSystem.out.println(x * x * x);\n\t\t} catch (IOException e) {\n\t\t} catch (NumberFormatException e) {\n\t\t}\n\t}",
"main",
"{\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tString line = reader.readLine();\n\t\t\tint x = Integer.parseInt(line);\n\t\t\tSystem.out.println(x * x * x);\n\t\t} catch (IOException e) {\n\t\t} catch (NumberFormatException e) {\n\t\t}\n\t}",
"BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));",
"reader",
"new BufferedReader(new InputStreamReader(System.in))",
"try {\n\t\t\tString line = reader.readLine();\n\t\t\tint x = Integer.parseInt(line);\n\t\t\tSystem.out.println(x * x * x);\n\t\t} catch (IOException e) {\n\t\t} catch (NumberFormatException e) {\n\t\t}",
"catch (IOException e) {\n\t\t}",
"IOException e",
"{\n\t\t}",
"catch (NumberFormatException e) {\n\t\t}",
"NumberFormatException e",
"{\n\t\t}",
"{\n\t\t\tString line = reader.readLine();\n\t\t\tint x = Integer.parseInt(line);\n\t\t\tSystem.out.println(x * x * x);\n\t\t}",
"String line = reader.readLine();",
"line",
"reader.readLine()",
"reader.readLine",
"reader",
"int x = Integer.parseInt(line);",
"x",
"Integer.parseInt(line)",
"Integer.parseInt",
"Integer",
"line",
"System.out.println(x * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tString line = reader.readLine();\n\t\t\tint x = Integer.parseInt(line);\n\t\t\tSystem.out.println(x * x * x);\n\t\t} catch (IOException e) {\n\t\t} catch (NumberFormatException e) {\n\t\t}\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tString line = reader.readLine();\n\t\t\tint x = Integer.parseInt(line);\n\t\t\tSystem.out.println(x * x * x);\n\t\t} catch (IOException e) {\n\t\t} catch (NumberFormatException e) {\n\t\t}\n\t}\n}",
"Main"
] | import java.io.*;
public class Main {
public static void main(String[] args) {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
try {
String line = reader.readLine();
int x = Integer.parseInt(line);
System.out.println(x * x * x);
} catch (IOException e) {
} catch (NumberFormatException e) {
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
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
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
6,
27
],
[
27,
28
],
[
0,
29
],
[
29,
30
],
[
29,
31
]
] | [
"import java.util.Scanner;\n\n\npublic class Main {\n\t\n\tpublic static void main(String args[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tfinal long x = sc.nextLong();\n\t\t\n\t\tSystem.out.println(x * x * x);\n\t\t\n\t}\n\t\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\t\n\tpublic static void main(String args[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tfinal long x = sc.nextLong();\n\t\t\n\t\tSystem.out.println(x * x * x);\n\t\t\n\t}\n\t\n}",
"Main",
"public static void main(String args[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tfinal long x = sc.nextLong();\n\t\t\n\t\tSystem.out.println(x * x * x);\n\t\t\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tfinal long x = sc.nextLong();\n\t\t\n\t\tSystem.out.println(x * x * x);\n\t\t\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"final long x = sc.nextLong();",
"x",
"sc.nextLong()",
"sc.nextLong",
"sc",
"System.out.println(x * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String args[]",
"args",
"public class Main {\n\t\n\tpublic static void main(String args[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tfinal long x = sc.nextLong();\n\t\t\n\t\tSystem.out.println(x * x * x);\n\t\t\n\t}\n\t\n}",
"public class Main {\n\t\n\tpublic static void main(String args[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tfinal long x = sc.nextLong();\n\t\t\n\t\tSystem.out.println(x * x * x);\n\t\t\n\t}\n\t\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
final long x = sc.nextLong();
System.out.println(x * x * x);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
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
],
[
14,
15
],
[
15,
16
],
[
14,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
26,
26
],
[
26,
27
],
[
26,
28
],
[
26,
29
],
[
6,
30
],
[
30,
31
]
] | [
"\nimport java.util.Scanner;\n\nclass Main{\n public static void main(String[] args ){\n Scanner scanner = new Scanner(System.in);\n int input = Integer.parseInt(scanner.nextLine());\n System.out.println(input*input*input);\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 input = Integer.parseInt(scanner.nextLine());\n System.out.println(input*input*input);\n }\n}",
"Main",
"public static void main(String[] args ){\n Scanner scanner = new Scanner(System.in);\n int input = Integer.parseInt(scanner.nextLine());\n System.out.println(input*input*input);\n }",
"main",
"{\n Scanner scanner = new Scanner(System.in);\n int input = Integer.parseInt(scanner.nextLine());\n System.out.println(input*input*input);\n }",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int input = Integer.parseInt(scanner.nextLine());",
"input",
"Integer.parseInt(scanner.nextLine())",
"Integer.parseInt",
"Integer",
"scanner.nextLine()",
"scanner.nextLine",
"scanner",
"System.out.println(input*input*input)",
"System.out.println",
"System.out",
"System",
"System.out",
"input*input*input",
"input*input*input",
"input",
"input",
"input",
"String[] args",
"args"
] |
import java.util.Scanner;
class Main{
public static void main(String[] args ){
Scanner scanner = new Scanner(System.in);
int input = Integer.parseInt(scanner.nextLine());
System.out.println(input*input*input);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
2,
13,
13,
13,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
20,
20
],
[
20,
21
],
[
20,
22
],
[
20,
23
],
[
8,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
24,
29
],
[
6,
30
],
[
30,
31
]
] | [
"import java.util.Scanner;\nclass Main{\n public static void main(String args[]) {\n Scanner scanner = new Scanner(System.in);\n int number = scanner.nextInt();\n int result = number * number * number;\n System.out.println(result);\n\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 number = scanner.nextInt();\n int result = number * number * number;\n System.out.println(result);\n\n }\n}",
"Main",
"public static void main(String args[]) {\n Scanner scanner = new Scanner(System.in);\n int number = scanner.nextInt();\n int result = number * number * number;\n System.out.println(result);\n\n }",
"main",
"{\n Scanner scanner = new Scanner(System.in);\n int number = scanner.nextInt();\n int result = number * number * number;\n System.out.println(result);\n\n }",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int number = scanner.nextInt();",
"number",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int result = number * number * number;",
"result",
"number * number * number",
"number * number * number",
"number",
"number",
"number",
"System.out.println(result)",
"System.out.println",
"System.out",
"System",
"System.out",
"result",
"String args[]",
"args"
] | import java.util.Scanner;
class Main{
public static void main(String args[]) {
Scanner scanner = new Scanner(System.in);
int number = scanner.nextInt();
int result = number * number * number;
System.out.println(result);
}
} |
[
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,
2,
2,
13,
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
],
[
39,
11
],
[
39,
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
],
[
32,
32
],
[
32,
33
],
[
32,
34
],
[
32,
35
],
[
12,
36
],
[
36,
37
],
[
0,
38
],
[
38,
39
],
[
38,
40
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.math.BigInteger;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int n = Integer.parseInt(br.readLine());\n System.out.println(n * n * n);\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.math.BigInteger;",
"BigInteger",
"java.math",
"public class Main {\n public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int n = Integer.parseInt(br.readLine());\n System.out.println(n * n * n);\n }\n}",
"Main",
"public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int n = Integer.parseInt(br.readLine());\n System.out.println(n * n * n);\n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int n = Integer.parseInt(br.readLine());\n System.out.println(n * n * n);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int n = Integer.parseInt(br.readLine());",
"n",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"System.out.println(n * n * n)",
"System.out.println",
"System.out",
"System",
"System.out",
"n * n * n",
"n * n * n",
"n",
"n",
"n",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int n = Integer.parseInt(br.readLine());\n System.out.println(n * n * n);\n }\n}",
"public class Main {\n public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int n = Integer.parseInt(br.readLine());\n System.out.println(n * n * n);\n }\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
System.out.println(n * n * n);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
36,
5
],
[
36,
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
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
29,
29
],
[
29,
30
],
[
29,
31
],
[
29,
32
],
[
6,
33
],
[
33,
34
],
[
0,
35
],
[
35,
36
],
[
35,
37
]
] | [
"import java.util.Scanner;\n\n\npublic class Main {\n\tpublic static void main(String args[]) {\n\t\t\n\tScanner sc = new Scanner(System.in);\n\tString s = sc.next();\n\tint x = Integer.parseInt(s);\n\tSystem.out.println(x * x * x);\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\tpublic static void main(String args[]) {\n\t\t\n\tScanner sc = new Scanner(System.in);\n\tString s = sc.next();\n\tint x = Integer.parseInt(s);\n\tSystem.out.println(x * x * x);\n\t}\n\n}",
"Main",
"public static void main(String args[]) {\n\t\t\n\tScanner sc = new Scanner(System.in);\n\tString s = sc.next();\n\tint x = Integer.parseInt(s);\n\tSystem.out.println(x * x * x);\n\t}",
"main",
"{\n\t\t\n\tScanner sc = new Scanner(System.in);\n\tString s = sc.next();\n\tint x = Integer.parseInt(s);\n\tSystem.out.println(x * x * x);\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"String s = sc.next();",
"s",
"sc.next()",
"sc.next",
"sc",
"int x = Integer.parseInt(s);",
"x",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"System.out.println(x * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String args[]",
"args",
"public class Main {\n\tpublic static void main(String args[]) {\n\t\t\n\tScanner sc = new Scanner(System.in);\n\tString s = sc.next();\n\tint x = Integer.parseInt(s);\n\tSystem.out.println(x * x * x);\n\t}\n\n}",
"public class Main {\n\tpublic static void main(String args[]) {\n\t\t\n\tScanner sc = new Scanner(System.in);\n\tString s = sc.next();\n\tint x = Integer.parseInt(s);\n\tSystem.out.println(x * x * x);\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
String s = sc.next();
int x = Integer.parseInt(s);
System.out.println(x * x * x);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
20,
12,
13,
30,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
17,
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
],
[
36,
8
],
[
36,
9
],
[
9,
10
],
[
9,
11
],
[
36,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
14,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
22,
26
],
[
14,
27
],
[
27,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
27,
32
],
[
12,
33
],
[
33,
34
],
[
0,
35
],
[
35,
36
],
[
35,
37
]
] | [
"import java.lang.Math.*;\nimport java.util.*;\n\npublic class Main{\n\tprivate static final Scanner scan = new Scanner(System.in);\n\n\tpublic static void main(String[] args){\n\t\tint x = scan.nextInt();\n\t\tint out = (int) Math.pow(x, 3);\n\t\tSystem.out.println(out);\n\t}\n}",
"import java.lang.Math.*;",
"Math.*",
"java.lang",
"import java.util.*;",
"util.*",
"java",
"public class Main{\n\tprivate static final Scanner scan = new Scanner(System.in);\n\n\tpublic static void main(String[] args){\n\t\tint x = scan.nextInt();\n\t\tint out = (int) Math.pow(x, 3);\n\t\tSystem.out.println(out);\n\t}\n}",
"Main",
"private static final Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"public static void main(String[] args){\n\t\tint x = scan.nextInt();\n\t\tint out = (int) Math.pow(x, 3);\n\t\tSystem.out.println(out);\n\t}",
"main",
"{\n\t\tint x = scan.nextInt();\n\t\tint out = (int) Math.pow(x, 3);\n\t\tSystem.out.println(out);\n\t}",
"int x = scan.nextInt();",
"x",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int out = (int) Math.pow(x, 3);",
"out",
"(int) Math.pow(x, 3)",
"Math.pow",
"Math",
"x",
"3",
"System.out.println(out)",
"System.out.println",
"System.out",
"System",
"System.out",
"out",
"String[] args",
"args",
"public class Main{\n\tprivate static final Scanner scan = new Scanner(System.in);\n\n\tpublic static void main(String[] args){\n\t\tint x = scan.nextInt();\n\t\tint out = (int) Math.pow(x, 3);\n\t\tSystem.out.println(out);\n\t}\n}",
"public class Main{\n\tprivate static final Scanner scan = new Scanner(System.in);\n\n\tpublic static void main(String[] args){\n\t\tint x = scan.nextInt();\n\t\tint out = (int) Math.pow(x, 3);\n\t\tSystem.out.println(out);\n\t}\n}",
"Main"
] | import java.lang.Math.*;
import java.util.*;
public class Main{
private static final Scanner scan = new Scanner(System.in);
public static void main(String[] args){
int x = scan.nextInt();
int out = (int) Math.pow(x, 3);
System.out.println(out);
}
} |
[
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,
0,
13,
0,
13,
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
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
40,
11
],
[
40,
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
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
14,
31
],
[
31,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
31,
36
],
[
12,
37
],
[
37,
38
],
[
0,
39
],
[
39,
40
],
[
39,
41
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n \npublic class Main {\n \n public static void main(String args[]) throws IOException {\n BufferedReader sR = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(sR.readLine());\n x *= x *= x;\n System.out.println(x);\n \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",
"public class Main {\n \n public static void main(String args[]) throws IOException {\n BufferedReader sR = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(sR.readLine());\n x *= x *= x;\n System.out.println(x);\n \n\n }\n \n}",
"Main",
"public static void main(String args[]) throws IOException {\n BufferedReader sR = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(sR.readLine());\n x *= x *= x;\n System.out.println(x);\n \n\n }",
"main",
"{\n BufferedReader sR = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(sR.readLine());\n x *= x *= x;\n System.out.println(x);\n \n\n }",
"BufferedReader sR = new BufferedReader(new InputStreamReader(System.in));",
"sR",
"new BufferedReader(new InputStreamReader(System.in))",
"int x = Integer.parseInt(sR.readLine());",
"x",
"Integer.parseInt(sR.readLine())",
"Integer.parseInt",
"Integer",
"sR.readLine()",
"sR.readLine",
"sR",
"x *= x *= x",
"x",
"x *= x",
"x",
"x",
"System.out.println(x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x",
"String args[]",
"args",
"public class Main {\n \n public static void main(String args[]) throws IOException {\n BufferedReader sR = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(sR.readLine());\n x *= x *= x;\n System.out.println(x);\n \n\n }\n \n}",
"public class Main {\n \n public static void main(String args[]) throws IOException {\n BufferedReader sR = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(sR.readLine());\n x *= x *= x;\n System.out.println(x);\n \n\n }\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 sR = new BufferedReader(new InputStreamReader(System.in));
int x = Integer.parseInt(sR.readLine());
x *= x *= x;
System.out.println(x);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
17,
41,
13,
13,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
36,
5
],
[
36,
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
],
[
19,
23
],
[
8,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
27,
32
],
[
6,
33
],
[
33,
34
],
[
0,
35
],
[
35,
36
],
[
35,
37
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n\tpublic static void main(String args[]){\n\n\t\t//Sccaner???????????????????????????????????????\n\t\t//System.in??§??\\????????±?????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint intA = sc.nextInt();\n\n\t\t//??????????¨?????????????????????????\n\t\tdouble dbAncer = Math.pow(intA, 3);\n\t\tint intAncer = (int)dbAncer;\n\t\tSystem.out.println(intAncer);\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\tpublic static void main(String args[]){\n\n\t\t//Sccaner???????????????????????????????????????\n\t\t//System.in??§??\\????????±?????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint intA = sc.nextInt();\n\n\t\t//??????????¨?????????????????????????\n\t\tdouble dbAncer = Math.pow(intA, 3);\n\t\tint intAncer = (int)dbAncer;\n\t\tSystem.out.println(intAncer);\n\t}\n}",
"Main",
"public static void main(String args[]){\n\n\t\t//Sccaner???????????????????????????????????????\n\t\t//System.in??§??\\????????±?????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint intA = sc.nextInt();\n\n\t\t//??????????¨?????????????????????????\n\t\tdouble dbAncer = Math.pow(intA, 3);\n\t\tint intAncer = (int)dbAncer;\n\t\tSystem.out.println(intAncer);\n\t}",
"main",
"{\n\n\t\t//Sccaner???????????????????????????????????????\n\t\t//System.in??§??\\????????±?????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint intA = sc.nextInt();\n\n\t\t//??????????¨?????????????????????????\n\t\tdouble dbAncer = Math.pow(intA, 3);\n\t\tint intAncer = (int)dbAncer;\n\t\tSystem.out.println(intAncer);\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int intA = sc.nextInt();",
"intA",
"sc.nextInt()",
"sc.nextInt",
"sc",
"double dbAncer = Math.pow(intA, 3);",
"dbAncer",
"Math.pow(intA, 3)",
"Math.pow",
"Math",
"intA",
"3",
"int intAncer = (int)dbAncer;",
"intAncer",
"(int)dbAncer",
"System.out.println(intAncer)",
"System.out.println",
"System.out",
"System",
"System.out",
"intAncer",
"String args[]",
"args",
"public class Main{\n\tpublic static void main(String args[]){\n\n\t\t//Sccaner???????????????????????????????????????\n\t\t//System.in??§??\\????????±?????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint intA = sc.nextInt();\n\n\t\t//??????????¨?????????????????????????\n\t\tdouble dbAncer = Math.pow(intA, 3);\n\t\tint intAncer = (int)dbAncer;\n\t\tSystem.out.println(intAncer);\n\t}\n}",
"public class Main{\n\tpublic static void main(String args[]){\n\n\t\t//Sccaner???????????????????????????????????????\n\t\t//System.in??§??\\????????±?????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint intA = sc.nextInt();\n\n\t\t//??????????¨?????????????????????????\n\t\tdouble dbAncer = Math.pow(intA, 3);\n\t\tint intAncer = (int)dbAncer;\n\t\tSystem.out.println(intAncer);\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String args[]){
//Sccaner???????????????????????????????????????
//System.in??§??\????????±?????????
Scanner sc = new Scanner(System.in);
int intA = sc.nextInt();
//??????????¨?????????????????????????
double dbAncer = Math.pow(intA, 3);
int intAncer = (int)dbAncer;
System.out.println(intAncer);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
13,
2,
2,
13,
13,
13,
23,
13,
12,
13,
30,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
20,
20
],
[
20,
21
],
[
20,
22
],
[
20,
23
],
[
6,
24
],
[
24,
25
],
[
4,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
26,
35
],
[
35,
36
]
] | [
"import java.util.Scanner;\nclass Main{\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tprint(n*n*n);\n\t}\n\tprivate static void print(int x){\n\t\tSystem.out.println(x);\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tprint(n*n*n);\n\t}\n\tprivate static void print(int x){\n\t\tSystem.out.println(x);\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tprint(n*n*n);\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tprint(n*n*n);\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int n = scan.nextInt();",
"n",
"scan.nextInt()",
"scan.nextInt",
"scan",
"print(n*n*n)",
"print",
"n*n*n",
"n*n*n",
"n",
"n",
"n",
"String[] args",
"args",
"private static void print(int x){\n\t\tSystem.out.println(x);\n\t}",
"print",
"{\n\t\tSystem.out.println(x);\n\t}",
"System.out.println(x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x",
"int x",
"x"
] | import java.util.Scanner;
class Main{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
print(n*n*n);
}
private static void print(int x){
System.out.println(x);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
33,
5
],
[
33,
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
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
8,
27
],
[
27,
28
],
[
28,
29
],
[
6,
30
],
[
30,
31
],
[
0,
32
],
[
32,
33
],
[
32,
34
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n public static void main(String [] args){\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n System.out.println(x*x*x);\n\n sc.close();\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 x = sc.nextInt();\n System.out.println(x*x*x);\n\n sc.close();\n }\n}",
"Main",
"public static void main(String [] args){\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n System.out.println(x*x*x);\n\n sc.close();\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int x = sc.nextInt();\n System.out.println(x*x*x);\n\n sc.close();\n }",
"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*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"sc.close()",
"sc.close",
"sc",
"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 System.out.println(x*x*x);\n\n sc.close();\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 System.out.println(x*x*x);\n\n sc.close();\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();
System.out.println(x*x*x);
sc.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
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
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
6,
27
],
[
27,
28
],
[
0,
29
],
[
29,
30
],
[
29,
31
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n public static void main(String[] a){\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n System.out.println(x*x*x);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n public static void main(String[] a){\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n System.out.println(x*x*x);\n }\n}",
"Main",
"public static void main(String[] a){\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n System.out.println(x*x*x);\n }",
"main",
"{\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n System.out.println(x*x*x);\n }",
"Scanner scn = new Scanner(System.in);",
"scn",
"new Scanner(System.in)",
"int x = scn.nextInt();",
"x",
"scn.nextInt()",
"scn.nextInt",
"scn",
"System.out.println(x*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"String[] a",
"a",
"public class Main{\n public static void main(String[] a){\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n System.out.println(x*x*x);\n }\n}",
"public class Main{\n public static void main(String[] a){\n Scanner scn = new Scanner(System.in);\n int x = scn.nextInt();\n System.out.println(x*x*x);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String[] a){
Scanner scn = new Scanner(System.in);
int x = scn.nextInt();
System.out.println(x*x*x);
}
} |
[
7,
15,
13,
17,
6,
13,
41,
13,
41,
13,
41,
13,
12,
13,
30,
41,
13,
20,
0,
13,
4,
18,
13,
0,
13,
2,
13,
13,
0,
13,
2,
13,
13,
4,
18,
18,
13,
13,
13,
12,
13,
30,
41,
13,
20,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
51,
5
],
[
51,
6
],
[
6,
7
],
[
51,
8
],
[
8,
9
],
[
51,
10
],
[
10,
11
],
[
51,
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
],
[
25,
26
],
[
25,
27
],
[
14,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
30,
32
],
[
14,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
33,
38
],
[
51,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
45,
46
],
[
46,
47
],
[
39,
48
],
[
48,
49
],
[
0,
50
],
[
50,
51
],
[
50,
52
]
] | [
"import java.util.Scanner;\npublic class Main{\n\tint X,a,b;\n\t\n\tpublic void solve(){\n\t\tScanner sc=new Scanner(System.in);\n\t\tX=sc.nextInt();\n\t\t\n\t\ta=X*X;\n\t\tb=a*X;\n\t\t\n\t\tSystem.out.println(b);\n\t}\n\tpublic static void main(String[]args){\n\t\tMain obj=new Main();\n\t\tobj.solve();\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\tint X,a,b;\n\t\n\tpublic void solve(){\n\t\tScanner sc=new Scanner(System.in);\n\t\tX=sc.nextInt();\n\t\t\n\t\ta=X*X;\n\t\tb=a*X;\n\t\t\n\t\tSystem.out.println(b);\n\t}\n\tpublic static void main(String[]args){\n\t\tMain obj=new Main();\n\t\tobj.solve();\n\t}\n}",
"Main",
"int X",
"X",
"a",
"a",
"b;",
"b",
"public void solve(){\n\t\tScanner sc=new Scanner(System.in);\n\t\tX=sc.nextInt();\n\t\t\n\t\ta=X*X;\n\t\tb=a*X;\n\t\t\n\t\tSystem.out.println(b);\n\t}",
"solve",
"{\n\t\tScanner sc=new Scanner(System.in);\n\t\tX=sc.nextInt();\n\t\t\n\t\ta=X*X;\n\t\tb=a*X;\n\t\t\n\t\tSystem.out.println(b);\n\t}",
"Scanner sc=new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"X=sc.nextInt()",
"X",
"sc.nextInt()",
"sc.nextInt",
"sc",
"a=X*X",
"a",
"X*X",
"X",
"X",
"b=a*X",
"b",
"a*X",
"a",
"X",
"System.out.println(b)",
"System.out.println",
"System.out",
"System",
"System.out",
"b",
"public static void main(String[]args){\n\t\tMain obj=new Main();\n\t\tobj.solve();\n\t}",
"main",
"{\n\t\tMain obj=new Main();\n\t\tobj.solve();\n\t}",
"Main obj=new Main();",
"obj",
"new Main()",
"obj.solve()",
"obj.solve",
"obj",
"String[]args",
"args",
"public class Main{\n\tint X,a,b;\n\t\n\tpublic void solve(){\n\t\tScanner sc=new Scanner(System.in);\n\t\tX=sc.nextInt();\n\t\t\n\t\ta=X*X;\n\t\tb=a*X;\n\t\t\n\t\tSystem.out.println(b);\n\t}\n\tpublic static void main(String[]args){\n\t\tMain obj=new Main();\n\t\tobj.solve();\n\t}\n}",
"public class Main{\n\tint X,a,b;\n\t\n\tpublic void solve(){\n\t\tScanner sc=new Scanner(System.in);\n\t\tX=sc.nextInt();\n\t\t\n\t\ta=X*X;\n\t\tb=a*X;\n\t\t\n\t\tSystem.out.println(b);\n\t}\n\tpublic static void main(String[]args){\n\t\tMain obj=new Main();\n\t\tobj.solve();\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main{
int X,a,b;
public void solve(){
Scanner sc=new Scanner(System.in);
X=sc.nextInt();
a=X*X;
b=a*X;
System.out.println(b);
}
public static void main(String[]args){
Main obj=new Main();
obj.solve();
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
38,
5,
13,
30,
4,
18,
18,
13,
13,
2,
17,
13,
30,
0,
13,
4,
18,
13,
38,
5,
13,
30,
4,
18,
18,
13,
13,
2,
17,
13,
30,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
4,
13,
13,
23,
13,
12,
13,
30,
29,
2,
2,
13,
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
],
[
79,
11
],
[
79,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
14,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
24,
29
],
[
29,
30
],
[
29,
31
],
[
20,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
32,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
42,
47
],
[
47,
48
],
[
47,
49
],
[
38,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
54,
55
],
[
53,
56
],
[
50,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
57,
62
],
[
62,
63
],
[
62,
64
],
[
12,
65
],
[
65,
66
],
[
79,
67
],
[
67,
68
],
[
67,
69
],
[
69,
70
],
[
70,
71
],
[
72,
72
],
[
72,
73
],
[
72,
74
],
[
72,
75
],
[
67,
76
],
[
76,
77
],
[
0,
78
],
[
78,
79
],
[
78,
80
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main{\n\n\tpublic static void main(String[] args){\n\n\t\t//??\\??????????????????\n\t\tBufferedReader reader= new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString s;\n\n\t\ttry{\n\t\ts=reader.readLine();\n\t\ttry{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}\n\n\n\t\t}catch(IOException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\t\t}\n\n\n\t}//main??¢??°\n\n\tpublic static int cubeX(int x){\n\n\t\treturn x*x*x;\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",
"public class Main{\n\n\tpublic static void main(String[] args){\n\n\t\t//??\\??????????????????\n\t\tBufferedReader reader= new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString s;\n\n\t\ttry{\n\t\ts=reader.readLine();\n\t\ttry{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}\n\n\n\t\t}catch(IOException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\t\t}\n\n\n\t}//main??¢??°\n\n\tpublic static int cubeX(int x){\n\n\t\treturn x*x*x;\n\t}\n\n}",
"Main",
"public static void main(String[] args){\n\n\t\t//??\\??????????????????\n\t\tBufferedReader reader= new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString s;\n\n\t\ttry{\n\t\ts=reader.readLine();\n\t\ttry{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}\n\n\n\t\t}catch(IOException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\t\t}\n\n\n\t}//main??¢??°",
"main",
"{\n\n\t\t//??\\??????????????????\n\t\tBufferedReader reader= new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString s;\n\n\t\ttry{\n\t\ts=reader.readLine();\n\t\ttry{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}\n\n\n\t\t}catch(IOException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\t\t}\n\n\n\t}",
"BufferedReader reader= new BufferedReader(new InputStreamReader(System.in));",
"reader",
"new BufferedReader(new InputStreamReader(System.in))",
"String s;",
"s",
"try{\n\t\ts=reader.readLine();\n\t\ttry{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}\n\n\n\t\t}catch(IOException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\t\t}",
"catch(IOException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\t\t}",
"IOException e",
"{\n\t\t\tSystem.out.println(\"??????:\"+e);\n\t\t}",
"System.out.println(\"??????:\"+e)",
"System.out.println",
"System.out",
"System",
"System.out",
"\"??????:\"+e",
"\"??????:\"",
"e",
"{\n\t\ts=reader.readLine();\n\t\ttry{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}\n\n\n\t\t}",
"s=reader.readLine()",
"s",
"reader.readLine()",
"reader.readLine",
"reader",
"try{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}",
"catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}",
"NumberFormatException e",
"{\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}",
"System.out.println(\"??????:\"+e)",
"System.out.println",
"System.out",
"System",
"System.out",
"\"??????:\"+e",
"\"??????:\"",
"e",
"{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}",
"int x=Integer.parseInt(s);",
"x",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"System.out.println(cubeX(x))",
"System.out.println",
"System.out",
"System",
"System.out",
"cubeX(x)",
"cubeX",
"x",
"String[] args",
"args",
"public static int cubeX(int x){\n\n\t\treturn x*x*x;\n\t}",
"cubeX",
"{\n\n\t\treturn x*x*x;\n\t}",
"return x*x*x;",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"int x",
"x",
"public class Main{\n\n\tpublic static void main(String[] args){\n\n\t\t//??\\??????????????????\n\t\tBufferedReader reader= new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString s;\n\n\t\ttry{\n\t\ts=reader.readLine();\n\t\ttry{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}\n\n\n\t\t}catch(IOException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\t\t}\n\n\n\t}//main??¢??°\n\n\tpublic static int cubeX(int x){\n\n\t\treturn x*x*x;\n\t}\n\n}",
"public class Main{\n\n\tpublic static void main(String[] args){\n\n\t\t//??\\??????????????????\n\t\tBufferedReader reader= new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString s;\n\n\t\ttry{\n\t\ts=reader.readLine();\n\t\ttry{\n\t\t\tint x=Integer.parseInt(s);\n\n\t\t\tSystem.out.println(cubeX(x));\n\n\t\t}catch(NumberFormatException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\n\t\t}\n\n\n\t\t}catch(IOException e){\n\t\t\tSystem.out.println(\"??????:\"+e);\n\t\t}\n\n\n\t}//main??¢??°\n\n\tpublic static int cubeX(int x){\n\n\t\treturn x*x*x;\n\t}\n\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main{
public static void main(String[] args){
//??\??????????????????
BufferedReader reader= new BufferedReader(new InputStreamReader(System.in));
String s;
try{
s=reader.readLine();
try{
int x=Integer.parseInt(s);
System.out.println(cubeX(x));
}catch(NumberFormatException e){
System.out.println("??????:"+e);
}
}catch(IOException e){
System.out.println("??????:"+e);
}
}//main??¢??°
public static int cubeX(int x){
return x*x*x;
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
41,
13,
42,
17,
30,
38,
5,
13,
30,
4,
18,
13,
17,
30,
0,
13,
4,
18,
13,
0,
13,
4,
18,
13,
13,
0,
13,
2,
2,
13,
13,
13,
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
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
14,
20
],
[
20,
21
],
[
14,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
30,
31
],
[
29,
32
],
[
25,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
33,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
41,
44
],
[
33,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
47,
51
],
[
33,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
52,
57
],
[
12,
58
],
[
58,
59
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\n\nclass Main{\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString name;\n\t\tint num;\n\n\t\twhile(true){\n\n\t\t\ttry{\n\t\t\t\tname=br.readLine();\n\t\t\t\tnum=Integer.parseInt(name);\n\t\t\t\tnum=(num*num*num);\n\t\t\t\tSystem.out.println(num);\n\t\t\t}\n\n\t\t\tcatch(Exception e){\n\t\t\t\tSystem.exit(0);\n\t\t\t}\n\t\t}\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"class Main{\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString name;\n\t\tint num;\n\n\t\twhile(true){\n\n\t\t\ttry{\n\t\t\t\tname=br.readLine();\n\t\t\t\tnum=Integer.parseInt(name);\n\t\t\t\tnum=(num*num*num);\n\t\t\t\tSystem.out.println(num);\n\t\t\t}\n\n\t\t\tcatch(Exception e){\n\t\t\t\tSystem.exit(0);\n\t\t\t}\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args)throws IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString name;\n\t\tint num;\n\n\t\twhile(true){\n\n\t\t\ttry{\n\t\t\t\tname=br.readLine();\n\t\t\t\tnum=Integer.parseInt(name);\n\t\t\t\tnum=(num*num*num);\n\t\t\t\tSystem.out.println(num);\n\t\t\t}\n\n\t\t\tcatch(Exception e){\n\t\t\t\tSystem.exit(0);\n\t\t\t}\n\t\t}\n\t}",
"main",
"{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString name;\n\t\tint num;\n\n\t\twhile(true){\n\n\t\t\ttry{\n\t\t\t\tname=br.readLine();\n\t\t\t\tnum=Integer.parseInt(name);\n\t\t\t\tnum=(num*num*num);\n\t\t\t\tSystem.out.println(num);\n\t\t\t}\n\n\t\t\tcatch(Exception e){\n\t\t\t\tSystem.exit(0);\n\t\t\t}\n\t\t}\n\t}",
"BufferedReader br=new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String name;",
"name",
"int num;",
"num",
"while(true){\n\n\t\t\ttry{\n\t\t\t\tname=br.readLine();\n\t\t\t\tnum=Integer.parseInt(name);\n\t\t\t\tnum=(num*num*num);\n\t\t\t\tSystem.out.println(num);\n\t\t\t}\n\n\t\t\tcatch(Exception e){\n\t\t\t\tSystem.exit(0);\n\t\t\t}\n\t\t}",
"true",
"{\n\n\t\t\ttry{\n\t\t\t\tname=br.readLine();\n\t\t\t\tnum=Integer.parseInt(name);\n\t\t\t\tnum=(num*num*num);\n\t\t\t\tSystem.out.println(num);\n\t\t\t}\n\n\t\t\tcatch(Exception e){\n\t\t\t\tSystem.exit(0);\n\t\t\t}\n\t\t}",
"try{\n\t\t\t\tname=br.readLine();\n\t\t\t\tnum=Integer.parseInt(name);\n\t\t\t\tnum=(num*num*num);\n\t\t\t\tSystem.out.println(num);\n\t\t\t}\n\n\t\t\tcatch(Exception e){\n\t\t\t\tSystem.exit(0);\n\t\t\t}",
"catch(Exception e){\n\t\t\t\tSystem.exit(0);\n\t\t\t}",
"Exception e",
"{\n\t\t\t\tSystem.exit(0);\n\t\t\t}",
"System.exit(0)",
"System.exit",
"System",
"0",
"{\n\t\t\t\tname=br.readLine();\n\t\t\t\tnum=Integer.parseInt(name);\n\t\t\t\tnum=(num*num*num);\n\t\t\t\tSystem.out.println(num);\n\t\t\t}",
"name=br.readLine()",
"name",
"br.readLine()",
"br.readLine",
"br",
"num=Integer.parseInt(name)",
"num",
"Integer.parseInt(name)",
"Integer.parseInt",
"Integer",
"name",
"num=(num*num*num)",
"num",
"(num*num*num)",
"num*num*num",
"num",
"num",
"num",
"System.out.println(num)",
"System.out.println",
"System.out",
"System",
"System.out",
"num",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class Main{
public static void main(String[] args)throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String name;
int num;
while(true){
try{
name=br.readLine();
num=Integer.parseInt(name);
num=(num*num*num);
System.out.println(num);
}
catch(Exception e){
System.exit(0);
}
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
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
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
6,
27
],
[
27,
28
],
[
0,
29
],
[
29,
30
],
[
29,
31
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n\tpublic static void main(String[] args){\n\t\tScanner kbScanner = new Scanner(System.in);\n\t\tint num = kbScanner.nextInt();\n\t\tSystem.out.println(num * num * num);\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\tpublic static void main(String[] args){\n\t\tScanner kbScanner = new Scanner(System.in);\n\t\tint num = kbScanner.nextInt();\n\t\tSystem.out.println(num * num * num);\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner kbScanner = new Scanner(System.in);\n\t\tint num = kbScanner.nextInt();\n\t\tSystem.out.println(num * num * num);\n\t}",
"main",
"{\n\t\tScanner kbScanner = new Scanner(System.in);\n\t\tint num = kbScanner.nextInt();\n\t\tSystem.out.println(num * num * num);\n\t}",
"Scanner kbScanner = new Scanner(System.in);",
"kbScanner",
"new Scanner(System.in)",
"int num = kbScanner.nextInt();",
"num",
"kbScanner.nextInt()",
"kbScanner.nextInt",
"kbScanner",
"System.out.println(num * num * num)",
"System.out.println",
"System.out",
"System",
"System.out",
"num * num * num",
"num * num * num",
"num",
"num",
"num",
"String[] args",
"args",
"public class Main{\n\tpublic static void main(String[] args){\n\t\tScanner kbScanner = new Scanner(System.in);\n\t\tint num = kbScanner.nextInt();\n\t\tSystem.out.println(num * num * num);\n\t}\n}",
"public class Main{\n\tpublic static void main(String[] args){\n\t\tScanner kbScanner = new Scanner(System.in);\n\t\tint num = kbScanner.nextInt();\n\t\tSystem.out.println(num * num * num);\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner kbScanner = new Scanner(System.in);
int num = kbScanner.nextInt();
System.out.println(num * num * num);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
13,
30,
41,
13,
20,
41,
13,
42,
2,
0,
13,
4,
18,
13,
17,
30,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
4,
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
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
20,
21
],
[
15,
22
],
[
22,
23
],
[
23,
24
],
[
23,
25
],
[
22,
26
],
[
26,
27
],
[
22,
28
],
[
28,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
29,
35
],
[
28,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
39,
42
],
[
36,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
48,
49
],
[
49,
50
],
[
48,
51
],
[
48,
52
],
[
12,
53
],
[
53,
54
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.io.IOException;\n\nclass Main {\n public static void main(String args[]) {\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) {\n int num = Integer.parseInt(line);\n System.out.println((int)Math.pow(num, 3));\n }\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"class Main {\n public static void main(String args[]) {\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) {\n int num = Integer.parseInt(line);\n System.out.println((int)Math.pow(num, 3));\n }\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n}",
"Main",
"public static void main(String args[]) {\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) {\n int num = Integer.parseInt(line);\n System.out.println((int)Math.pow(num, 3));\n }\n } catch (IOException e) {\n e.printStackTrace();\n }\n }",
"main",
"{\n try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) {\n int num = Integer.parseInt(line);\n System.out.println((int)Math.pow(num, 3));\n }\n } catch (IOException e) {\n e.printStackTrace();\n }\n }",
"try {\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) {\n int num = Integer.parseInt(line);\n System.out.println((int)Math.pow(num, 3));\n }\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 BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String line;\n while ((line = stdReader.readLine()) != null) {\n int num = Integer.parseInt(line);\n System.out.println((int)Math.pow(num, 3));\n }\n }",
"BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));",
"stdReader",
"new BufferedReader(new InputStreamReader(System.in))",
"String line;",
"line",
"while ((line = stdReader.readLine()) != null) {\n int num = Integer.parseInt(line);\n System.out.println((int)Math.pow(num, 3));\n }",
"(line = stdReader.readLine()) != null",
"(line = stdReader.readLine())",
"line",
"stdReader.readLine()",
"stdReader.readLine",
"stdReader",
"null",
"{\n int num = Integer.parseInt(line);\n System.out.println((int)Math.pow(num, 3));\n }",
"int num = Integer.parseInt(line);",
"num",
"Integer.parseInt(line)",
"Integer.parseInt",
"Integer",
"line",
"System.out.println((int)Math.pow(num, 3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(num, 3)",
"Math.pow",
"Math",
"num",
"3",
"String args[]",
"args"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
class Main {
public static void main(String args[]) {
try {
BufferedReader stdReader =
new BufferedReader(new InputStreamReader(System.in));
String line;
while ((line = stdReader.readLine()) != null) {
int num = Integer.parseInt(line);
System.out.println((int)Math.pow(num, 3));
}
} catch (IOException e) {
e.printStackTrace();
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
2,
13,
13,
13,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
33,
5
],
[
33,
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
],
[
20,
20
],
[
20,
21
],
[
20,
22
],
[
20,
23
],
[
8,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
24,
29
],
[
6,
30
],
[
30,
31
],
[
0,
32
],
[
32,
33
],
[
32,
34
]
] | [
"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 num = sc.nextInt();\n\t\t\n\t\tint result = num*num*num;\n\t\t\n\t\tSystem.out.println(result);\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 num = sc.nextInt();\n\t\t\n\t\tint result = num*num*num;\n\t\t\n\t\tSystem.out.println(result);\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint num = sc.nextInt();\n\t\t\n\t\tint result = num*num*num;\n\t\t\n\t\tSystem.out.println(result);\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint num = sc.nextInt();\n\t\t\n\t\tint result = num*num*num;\n\t\t\n\t\tSystem.out.println(result);\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int num = sc.nextInt();",
"num",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int result = num*num*num;",
"result",
"num*num*num",
"num*num*num",
"num",
"num",
"num",
"System.out.println(result)",
"System.out.println",
"System.out",
"System",
"System.out",
"result",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint num = sc.nextInt();\n\t\t\n\t\tint result = num*num*num;\n\t\t\n\t\tSystem.out.println(result);\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint num = sc.nextInt();\n\t\t\n\t\tint result = num*num*num;\n\t\t\n\t\tSystem.out.println(result);\n\t}\n}",
"Main"
] | import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
int result = num*num*num;
System.out.println(result);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
38,
5,
13,
30,
4,
18,
13,
30,
41,
13,
4,
18,
13,
13,
41,
13,
13,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
2,
13,
13,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
61,
5
],
[
61,
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
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
17,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
27,
30
],
[
24,
31
],
[
31,
32
],
[
31,
33
],
[
24,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
39,
40
],
[
39,
41
],
[
34,
42
],
[
42,
43
],
[
43,
44
],
[
34,
45
],
[
46,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
49,
51
],
[
24,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
52,
57
],
[
6,
58
],
[
58,
59
],
[
0,
60
],
[
60,
61
],
[
60,
62
]
] | [
"import java.io.*;\n \npublic class Main {\n public static void main(String args[]) throws IOException {\n BufferedReader b=new BufferedReader(new InputStreamReader(System.in));\n String bs=b.readLine();\n try{\n int bi=Integer.parseInt(bs);\n int x=bi;\n for(int i=0;i<2;i++){\n x=x*bi;\n }\n System.out.println(x);\n }catch(NumberFormatException e){\n e.printStackTrace();\n }\n }\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n public static void main(String args[]) throws IOException {\n BufferedReader b=new BufferedReader(new InputStreamReader(System.in));\n String bs=b.readLine();\n try{\n int bi=Integer.parseInt(bs);\n int x=bi;\n for(int i=0;i<2;i++){\n x=x*bi;\n }\n System.out.println(x);\n }catch(NumberFormatException e){\n e.printStackTrace();\n }\n }\n}",
"Main",
"public static void main(String args[]) throws IOException {\n BufferedReader b=new BufferedReader(new InputStreamReader(System.in));\n String bs=b.readLine();\n try{\n int bi=Integer.parseInt(bs);\n int x=bi;\n for(int i=0;i<2;i++){\n x=x*bi;\n }\n System.out.println(x);\n }catch(NumberFormatException e){\n e.printStackTrace();\n }\n }",
"main",
"{\n BufferedReader b=new BufferedReader(new InputStreamReader(System.in));\n String bs=b.readLine();\n try{\n int bi=Integer.parseInt(bs);\n int x=bi;\n for(int i=0;i<2;i++){\n x=x*bi;\n }\n System.out.println(x);\n }catch(NumberFormatException e){\n e.printStackTrace();\n }\n }",
"BufferedReader b=new BufferedReader(new InputStreamReader(System.in));",
"b",
"new BufferedReader(new InputStreamReader(System.in))",
"String bs=b.readLine();",
"bs",
"b.readLine()",
"b.readLine",
"b",
"try{\n int bi=Integer.parseInt(bs);\n int x=bi;\n for(int i=0;i<2;i++){\n x=x*bi;\n }\n System.out.println(x);\n }catch(NumberFormatException e){\n e.printStackTrace();\n }",
"catch(NumberFormatException e){\n e.printStackTrace();\n }",
"NumberFormatException e",
"{\n e.printStackTrace();\n }",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"{\n int bi=Integer.parseInt(bs);\n int x=bi;\n for(int i=0;i<2;i++){\n x=x*bi;\n }\n System.out.println(x);\n }",
"int bi=Integer.parseInt(bs);",
"bi",
"Integer.parseInt(bs)",
"Integer.parseInt",
"Integer",
"bs",
"int x=bi;",
"x",
"bi",
"for(int i=0;i<2;i++){\n x=x*bi;\n }",
"int i=0;",
"int i=0;",
"i",
"0",
"i<2",
"i",
"2",
"i++",
"i++",
"i",
"{\n x=x*bi;\n }",
"{\n x=x*bi;\n }",
"x=x*bi",
"x",
"x*bi",
"x",
"bi",
"System.out.println(x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x",
"String args[]",
"args",
"public class Main {\n public static void main(String args[]) throws IOException {\n BufferedReader b=new BufferedReader(new InputStreamReader(System.in));\n String bs=b.readLine();\n try{\n int bi=Integer.parseInt(bs);\n int x=bi;\n for(int i=0;i<2;i++){\n x=x*bi;\n }\n System.out.println(x);\n }catch(NumberFormatException e){\n e.printStackTrace();\n }\n }\n}",
"public class Main {\n public static void main(String args[]) throws IOException {\n BufferedReader b=new BufferedReader(new InputStreamReader(System.in));\n String bs=b.readLine();\n try{\n int bi=Integer.parseInt(bs);\n int x=bi;\n for(int i=0;i<2;i++){\n x=x*bi;\n }\n System.out.println(x);\n }catch(NumberFormatException e){\n e.printStackTrace();\n }\n }\n}",
"Main"
] | import java.io.*;
public class Main {
public static void main(String args[]) throws IOException {
BufferedReader b=new BufferedReader(new InputStreamReader(System.in));
String bs=b.readLine();
try{
int bi=Integer.parseInt(bs);
int x=bi;
for(int i=0;i<2;i++){
x=x*bi;
}
System.out.println(x);
}catch(NumberFormatException e){
e.printStackTrace();
}
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
38,
5,
13,
30,
4,
18,
18,
13,
13,
13,
29,
30,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
48,
8
],
[
48,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
19,
24
],
[
18,
25
],
[
15,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
29,
32
],
[
32,
33
],
[
33,
34
],
[
26,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
35,
40
],
[
41,
41
],
[
41,
42
],
[
41,
43
],
[
41,
44
],
[
9,
45
],
[
45,
46
],
[
0,
47
],
[
47,
48
],
[
47,
49
]
] | [
"import java.util.NoSuchElementException;\nimport java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n try {\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n return;\n }\n }\n}\n",
"import java.util.NoSuchElementException;",
"NoSuchElementException",
"java.util",
"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 try {\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n return;\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n try {\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n return;\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n try {\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n return;\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"try {\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n return;\n }",
"catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n return;\n }",
"NoSuchElementException | NumberFormatException e",
"{\n System.out.println(e);\n return;\n }",
"System.out.println(e)",
"System.out.println",
"System.out",
"System",
"System.out",
"e",
"return;",
"{\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n }",
"int x = Integer.parseInt(sc.nextLine());",
"x",
"Integer.parseInt(sc.nextLine())",
"Integer.parseInt",
"Integer",
"sc.nextLine()",
"sc.nextLine",
"sc",
"System.out.println(x * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n try {\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n return;\n }\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n try {\n int x = Integer.parseInt(sc.nextLine());\n System.out.println(x * x * x);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n return;\n }\n }\n}",
"Main"
] | import java.util.NoSuchElementException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
try {
int x = Integer.parseInt(sc.nextLine());
System.out.println(x * x * x);
} catch (NoSuchElementException | NumberFormatException e) {
System.out.println(e);
return;
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
13,
17,
4,
18,
18,
13,
13,
13,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
39,
5
],
[
39,
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
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
19,
26
],
[
8,
27
],
[
27,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
27,
32
],
[
8,
33
],
[
33,
34
],
[
34,
35
],
[
6,
36
],
[
36,
37
],
[
0,
38
],
[
38,
39
],
[
38,
40
]
] | [
"import java.io.*;\n\npublic class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString in = br.readLine();\n\t\tdouble x = Math.pow(Integer.parseInt(in), 3);\n\t\tSystem.out.println((int)x);\n\t\tbr.close();\n\t}\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString in = br.readLine();\n\t\tdouble x = Math.pow(Integer.parseInt(in), 3);\n\t\tSystem.out.println((int)x);\n\t\tbr.close();\n\t}\n}",
"Main",
"public static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString in = br.readLine();\n\t\tdouble x = Math.pow(Integer.parseInt(in), 3);\n\t\tSystem.out.println((int)x);\n\t\tbr.close();\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString in = br.readLine();\n\t\tdouble x = Math.pow(Integer.parseInt(in), 3);\n\t\tSystem.out.println((int)x);\n\t\tbr.close();\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String in = br.readLine();",
"in",
"br.readLine()",
"br.readLine",
"br",
"double x = Math.pow(Integer.parseInt(in), 3);",
"x",
"Math.pow(Integer.parseInt(in), 3)",
"Math.pow",
"Math",
"Integer.parseInt(in)",
"Integer.parseInt",
"Integer",
"in",
"3",
"System.out.println((int)x)",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)x",
"br.close()",
"br.close",
"br",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString in = br.readLine();\n\t\tdouble x = Math.pow(Integer.parseInt(in), 3);\n\t\tSystem.out.println((int)x);\n\t\tbr.close();\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString in = br.readLine();\n\t\tdouble x = Math.pow(Integer.parseInt(in), 3);\n\t\tSystem.out.println((int)x);\n\t\tbr.close();\n\t}\n}",
"Main"
] | import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String in = br.readLine();
double x = Math.pow(Integer.parseInt(in), 3);
System.out.println((int)x);
br.close();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
2,
13,
13,
13,
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
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
8,
26
],
[
26,
27
],
[
26,
28
],
[
29,
29
],
[
29,
30
],
[
29,
31
],
[
29,
32
],
[
8,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
33,
38
],
[
6,
39
],
[
39,
40
]
] | [
"import java.io.*;\nclass Main{\n public static void main(String[] args)throws IOException{\n \tInputStreamReader isr =new InputStreamReader(System.in);\n \t\tBufferedReader br =new BufferedReader(isr);\n \tString buf = br.readLine();\n \tint x = Integer.parseInt(buf);\n \tint y = x*x*x;\n System.out.println(y);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main{\n public static void main(String[] args)throws IOException{\n \tInputStreamReader isr =new InputStreamReader(System.in);\n \t\tBufferedReader br =new BufferedReader(isr);\n \tString buf = br.readLine();\n \tint x = Integer.parseInt(buf);\n \tint y = x*x*x;\n System.out.println(y);\n }\n}",
"Main",
"public static void main(String[] args)throws IOException{\n \tInputStreamReader isr =new InputStreamReader(System.in);\n \t\tBufferedReader br =new BufferedReader(isr);\n \tString buf = br.readLine();\n \tint x = Integer.parseInt(buf);\n \tint y = x*x*x;\n System.out.println(y);\n }",
"main",
"{\n \tInputStreamReader isr =new InputStreamReader(System.in);\n \t\tBufferedReader br =new BufferedReader(isr);\n \tString buf = br.readLine();\n \tint x = Integer.parseInt(buf);\n \tint y = x*x*x;\n System.out.println(y);\n }",
"InputStreamReader isr =new InputStreamReader(System.in);",
"isr",
"new InputStreamReader(System.in)",
"BufferedReader br =new BufferedReader(isr);",
"br",
"new BufferedReader(isr)",
"String buf = br.readLine();",
"buf",
"br.readLine()",
"br.readLine",
"br",
"int x = Integer.parseInt(buf);",
"x",
"Integer.parseInt(buf)",
"Integer.parseInt",
"Integer",
"buf",
"int y = x*x*x;",
"y",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"System.out.println(y)",
"System.out.println",
"System.out",
"System",
"System.out",
"y",
"String[] args",
"args"
] | import java.io.*;
class Main{
public static void main(String[] args)throws IOException{
InputStreamReader isr =new InputStreamReader(System.in);
BufferedReader br =new BufferedReader(isr);
String buf = br.readLine();
int x = Integer.parseInt(buf);
int y = x*x*x;
System.out.println(y);
}
} |
[
7,
15,
13,
17,
6,
13,
41,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
0,
13,
0,
13,
13,
12,
13,
30,
41,
13,
20,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
41,
5
],
[
41,
6
],
[
6,
7
],
[
41,
8
],
[
8,
9
],
[
8,
10
],
[
10,
11
],
[
11,
12
],
[
11,
13
],
[
10,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
10,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
19,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
26,
28
],
[
41,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
31,
35
],
[
35,
36
],
[
36,
37
],
[
29,
38
],
[
38,
39
],
[
0,
40
],
[
40,
41
],
[
40,
42
]
] | [
"import java.util.Scanner;\npublic class Main{\n\tint x;\n\tpublic void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x *=x *=x);\n\t\t\n\t\n\t}\n\t\n\tpublic static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\t\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\tint x;\n\tpublic void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x *=x *=x);\n\t\t\n\t\n\t}\n\t\n\tpublic static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\t\n\t}\n}",
"Main",
"int x;",
"x",
"public void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x *=x *=x);\n\t\t\n\t\n\t}",
"solve",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x *=x *=x);\n\t\t\n\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 *=x *=x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x *=x *=x",
"x",
"x *=x",
"x",
"x",
"public static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\t\n\t}",
"main",
"{\n\t\tMain obj = new Main();\n\t\tobj.solve();\t\n\t}",
"Main obj = new Main();",
"obj",
"new Main()",
"obj.solve()",
"obj.solve",
"obj",
"String[] args",
"args",
"public class Main{\n\tint x;\n\tpublic void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x *=x *=x);\n\t\t\n\t\n\t}\n\t\n\tpublic static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\t\n\t}\n}",
"public class Main{\n\tint x;\n\tpublic void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x *=x *=x);\n\t\t\n\t\n\t}\n\t\n\tpublic static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\t\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main{
int x;
public void solve(){
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
System.out.println(x *=x *=x);
}
public static void main(String[] args){
Main obj = new Main();
obj.solve();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
29,
29
],
[
29,
30
],
[
29,
31
],
[
29,
32
],
[
6,
33
],
[
33,
34
]
] | [
"import java.io.*;\n \nclass Main {\n public static void main(String[] arg)throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int s = Integer.parseInt(str);\n System.out.println(s*s*s);\n } \n}",
"import java.io.*;",
"io.*",
"java",
"class Main {\n public static void main(String[] arg)throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int s = Integer.parseInt(str);\n System.out.println(s*s*s);\n } \n}",
"Main",
"public static void main(String[] arg)throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int s = Integer.parseInt(str);\n System.out.println(s*s*s);\n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int s = Integer.parseInt(str);\n System.out.println(s*s*s);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String str = br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"int s = Integer.parseInt(str);",
"s",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"System.out.println(s*s*s)",
"System.out.println",
"System.out",
"System",
"System.out",
"s*s*s",
"s*s*s",
"s",
"s",
"s",
"String[] arg",
"arg"
] | import java.io.*;
class Main {
public static void main(String[] arg)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int s = Integer.parseInt(str);
System.out.println(s*s*s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
17,
41,
13,
17,
38,
5,
13,
30,
4,
18,
18,
13,
13,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
13,
2,
13,
13,
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
],
[
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
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
25,
30
],
[
21,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
31,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
38,
39
],
[
31,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
42,
45
],
[
31,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
51,
52
],
[
51,
53
],
[
46,
54
],
[
54,
55
],
[
55,
56
],
[
46,
57
],
[
58,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
61,
62
],
[
61,
63
],
[
31,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
12,
70
],
[
70,
71
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\n// 1-A 標準出力にHelloWorldと出力する\nclass Main {\n\n\t// プログラムのエントリポイント\n\tpublic static void main(String[] args) {\n\n\t\t//階乗を宣言\n\t\tfinal int intFactorial = 3;\n\n\t\t//答えの格納場所\n\t\tint intAnswer = 1;\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値をint型にする\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//階乗の回数だけ回す\n\t\t\tfor(int i = 0; i < intFactorial; i++) {\n\n\t\t\t\t//入力値を掛ける\n\t\t\t\tintAnswer = intAnswer * intLine;\n\t\t\t}\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswer);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外内容の表示\n\t\t\tSystem.out.println(e);\n\t\t}\n\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",
"class Main {\n\n\t// プログラムのエントリポイント\n\tpublic static void main(String[] args) {\n\n\t\t//階乗を宣言\n\t\tfinal int intFactorial = 3;\n\n\t\t//答えの格納場所\n\t\tint intAnswer = 1;\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値をint型にする\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//階乗の回数だけ回す\n\t\t\tfor(int i = 0; i < intFactorial; i++) {\n\n\t\t\t\t//入力値を掛ける\n\t\t\t\tintAnswer = intAnswer * intLine;\n\t\t\t}\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswer);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外内容の表示\n\t\t\tSystem.out.println(e);\n\t\t}\n\n\t}\n\n}",
"Main",
"// プログラムのエントリポイント\n\tpublic static void main(String[] args) {\n\n\t\t//階乗を宣言\n\t\tfinal int intFactorial = 3;\n\n\t\t//答えの格納場所\n\t\tint intAnswer = 1;\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値をint型にする\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//階乗の回数だけ回す\n\t\t\tfor(int i = 0; i < intFactorial; i++) {\n\n\t\t\t\t//入力値を掛ける\n\t\t\t\tintAnswer = intAnswer * intLine;\n\t\t\t}\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswer);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外内容の表示\n\t\t\tSystem.out.println(e);\n\t\t}\n\n\t}",
"main",
"{\n\n\t\t//階乗を宣言\n\t\tfinal int intFactorial = 3;\n\n\t\t//答えの格納場所\n\t\tint intAnswer = 1;\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値をint型にする\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//階乗の回数だけ回す\n\t\t\tfor(int i = 0; i < intFactorial; i++) {\n\n\t\t\t\t//入力値を掛ける\n\t\t\t\tintAnswer = intAnswer * intLine;\n\t\t\t}\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswer);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外内容の表示\n\t\t\tSystem.out.println(e);\n\t\t}\n\n\t}",
"final int intFactorial = 3;",
"intFactorial",
"3",
"int intAnswer = 1;",
"intAnswer",
"1",
"try{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値をint型にする\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//階乗の回数だけ回す\n\t\t\tfor(int i = 0; i < intFactorial; i++) {\n\n\t\t\t\t//入力値を掛ける\n\t\t\t\tintAnswer = intAnswer * intLine;\n\t\t\t}\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswer);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外内容の表示\n\t\t\tSystem.out.println(e);\n\t\t}",
"catch(IOException e) {\n\n\t\t\t//例外内容の表示\n\t\t\tSystem.out.println(e);\n\t\t}",
"IOException e",
"{\n\n\t\t\t//例外内容の表示\n\t\t\tSystem.out.println(e);\n\t\t}",
"System.out.println(e)",
"System.out.println",
"System.out",
"System",
"System.out",
"e",
"{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値をint型にする\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//階乗の回数だけ回す\n\t\t\tfor(int i = 0; i < intFactorial; i++) {\n\n\t\t\t\t//入力値を掛ける\n\t\t\t\tintAnswer = intAnswer * intLine;\n\t\t\t}\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswer);\n\n\t\t//例外処理\n\t\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String strLine = br.readLine();",
"strLine",
"br.readLine()",
"br.readLine",
"br",
"int intLine = Integer.parseInt(strLine);",
"intLine",
"Integer.parseInt(strLine)",
"Integer.parseInt",
"Integer",
"strLine",
"for(int i = 0; i < intFactorial; i++) {\n\n\t\t\t\t//入力値を掛ける\n\t\t\t\tintAnswer = intAnswer * intLine;\n\t\t\t}",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < intFactorial",
"i",
"intFactorial",
"i++",
"i++",
"i",
"{\n\n\t\t\t\t//入力値を掛ける\n\t\t\t\tintAnswer = intAnswer * intLine;\n\t\t\t}",
"{\n\n\t\t\t\t//入力値を掛ける\n\t\t\t\tintAnswer = intAnswer * intLine;\n\t\t\t}",
"intAnswer = intAnswer * intLine",
"intAnswer",
"intAnswer * intLine",
"intAnswer",
"intLine",
"System.out.println(intAnswer)",
"System.out.println",
"System.out",
"System",
"System.out",
"intAnswer",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
// 1-A 標準出力にHelloWorldと出力する
class Main {
// プログラムのエントリポイント
public static void main(String[] args) {
//階乗を宣言
final int intFactorial = 3;
//答えの格納場所
int intAnswer = 1;
try{
//キーボードからの入力準備
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
//キーボードからの入力をString型で受け取る
String strLine = br.readLine();
//入力値をint型にする
int intLine = Integer.parseInt(strLine);
//階乗の回数だけ回す
for(int i = 0; i < intFactorial; i++) {
//入力値を掛ける
intAnswer = intAnswer * intLine;
}
//結果を出力
System.out.println(intAnswer);
//例外処理
}catch(IOException e) {
//例外内容の表示
System.out.println(e);
}
}
} |
[
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,
13,
17,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
33,
5
],
[
33,
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
],
[
22,
26
],
[
8,
27
],
[
27,
28
],
[
28,
29
],
[
6,
30
],
[
30,
31
],
[
0,
32
],
[
32,
33
],
[
32,
34
]
] | [
"import java.util.*;\npublic class Main{\n public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n System.out.println((int)(Math.pow(a,3)));\n sc.close();\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 a = sc.nextInt();\n System.out.println((int)(Math.pow(a,3)));\n sc.close();\n }\n}",
"Main",
"public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n System.out.println((int)(Math.pow(a,3)));\n sc.close();\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n System.out.println((int)(Math.pow(a,3)));\n sc.close();\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((int)(Math.pow(a,3)))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)(Math.pow(a,3))",
"Math.pow",
"Math",
"a",
"3",
"sc.close()",
"sc.close",
"sc",
"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 System.out.println((int)(Math.pow(a,3)));\n sc.close();\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 System.out.println((int)(Math.pow(a,3)));\n sc.close();\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();
System.out.println((int)(Math.pow(a,3)));
sc.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
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
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
6,
27
],
[
27,
28
],
[
0,
29
],
[
29,
30
],
[
29,
31
]
] | [
"import java.util.Scanner;\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*n*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 n = sc.nextInt();\n System.out.println(n*n*n);\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*n*n);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n System.out.println(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*n*n)",
"System.out.println",
"System.out",
"System",
"System.out",
"n*n*n",
"n*n*n",
"n",
"n",
"n",
"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*n*n);\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*n*n);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String... args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println(n*n*n);
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
17,
41,
13,
20,
38,
5,
13,
30,
30,
0,
13,
4,
18,
13,
0,
13,
4,
18,
13,
13,
41,
13,
4,
18,
13,
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
],
[
11,
14
],
[
14,
15
],
[
14,
16
],
[
11,
17
],
[
17,
18
],
[
17,
19
],
[
11,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
20,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
24,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
32,
35
],
[
11,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
39,
40
],
[
38,
41
],
[
38,
42
],
[
11,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
9,
49
],
[
49,
50
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\nclass Main {\n\n\tpublic static void main(String[] args) {\n\t\tString str;\n\t\tdouble d = 0;\n\t\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tstr = br.readLine();\n\t\t\td = Double.parseDouble((str));\n\t\t} catch(Exception e) {\n\t\t\t\n\t\t}\n\t\tint i = (int)Math.pow(d, 3.0);\n\t\tSystem.out.println(i);\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"class Main {\n\n\tpublic static void main(String[] args) {\n\t\tString str;\n\t\tdouble d = 0;\n\t\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tstr = br.readLine();\n\t\t\td = Double.parseDouble((str));\n\t\t} catch(Exception e) {\n\t\t\t\n\t\t}\n\t\tint i = (int)Math.pow(d, 3.0);\n\t\tSystem.out.println(i);\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tString str;\n\t\tdouble d = 0;\n\t\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tstr = br.readLine();\n\t\t\td = Double.parseDouble((str));\n\t\t} catch(Exception e) {\n\t\t\t\n\t\t}\n\t\tint i = (int)Math.pow(d, 3.0);\n\t\tSystem.out.println(i);\n\t}",
"main",
"{\n\t\tString str;\n\t\tdouble d = 0;\n\t\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\ttry {\n\t\t\tstr = br.readLine();\n\t\t\td = Double.parseDouble((str));\n\t\t} catch(Exception e) {\n\t\t\t\n\t\t}\n\t\tint i = (int)Math.pow(d, 3.0);\n\t\tSystem.out.println(i);\n\t}",
"String str;",
"str",
"double d = 0;",
"d",
"0",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"try {\n\t\t\tstr = br.readLine();\n\t\t\td = Double.parseDouble((str));\n\t\t} catch(Exception e) {\n\t\t\t\n\t\t}",
"catch(Exception e) {\n\t\t\t\n\t\t}",
"Exception e",
"{\n\t\t\t\n\t\t}",
"{\n\t\t\tstr = br.readLine();\n\t\t\td = Double.parseDouble((str));\n\t\t}",
"str = br.readLine()",
"str",
"br.readLine()",
"br.readLine",
"br",
"d = Double.parseDouble((str))",
"d",
"Double.parseDouble((str))",
"Double.parseDouble",
"Double",
"(str)",
"int i = (int)Math.pow(d, 3.0);",
"i",
"(int)Math.pow(d, 3.0)",
"Math.pow",
"Math",
"d",
"3.0",
"System.out.println(i)",
"System.out.println",
"System.out",
"System",
"System.out",
"i",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
class Main {
public static void main(String[] args) {
String str;
double d = 0;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
try {
str = br.readLine();
d = Double.parseDouble((str));
} catch(Exception e) {
}
int i = (int)Math.pow(d, 3.0);
System.out.println(i);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
4,
18,
13,
0,
13,
2,
2,
13,
13,
13,
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
],
[
11,
14
],
[
14,
15
],
[
11,
16
],
[
16,
17
],
[
16,
18
],
[
11,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
22,
23
],
[
21,
24
],
[
24,
25
],
[
25,
26
],
[
11,
27
],
[
27,
28
],
[
27,
29
],
[
30,
30
],
[
30,
31
],
[
30,
32
],
[
30,
33
],
[
11,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
9,
40
],
[
40,
41
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\nclass Main{\n public static void main(String[] args) throws Exception{\n int x, ans;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n x = Integer.parseInt(br.readLine());\n\n ans = x * x * x;\n System.out.println(ans);\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"class Main{\n public static void main(String[] args) throws Exception{\n int x, ans;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n x = Integer.parseInt(br.readLine());\n\n ans = x * x * x;\n System.out.println(ans);\n }\n}",
"Main",
"public static void main(String[] args) throws Exception{\n int x, ans;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n x = Integer.parseInt(br.readLine());\n\n ans = x * x * x;\n System.out.println(ans);\n }",
"main",
"{\n int x, ans;\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n x = Integer.parseInt(br.readLine());\n\n ans = x * x * x;\n System.out.println(ans);\n }",
"int x",
"x",
"ans;",
"ans",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"x = Integer.parseInt(br.readLine())",
"x",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"ans = x * x * x",
"ans",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"System.out.println(ans)",
"System.out.println",
"System.out",
"System",
"System.out",
"ans",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
class Main{
public static void main(String[] args) throws Exception{
int x, ans;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
x = Integer.parseInt(br.readLine());
ans = x * x * x;
System.out.println(ans);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
0,
13,
4,
18,
13,
42,
17,
30,
14,
2,
2,
13,
17,
2,
13,
17,
30,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
3,
30,
9,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
50,
5
],
[
50,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
8,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
8,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
24,
25
],
[
24,
26
],
[
23,
27
],
[
27,
28
],
[
27,
29
],
[
22,
30
],
[
30,
31
],
[
31,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
31,
36
],
[
37,
37
],
[
37,
38
],
[
37,
39
],
[
37,
40
],
[
30,
41
],
[
22,
42
],
[
42,
43
],
[
8,
44
],
[
44,
45
],
[
45,
46
],
[
6,
47
],
[
47,
48
],
[
0,
49
],
[
49,
50
],
[
49,
51
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x;\n\t\tx = sc.nextInt();\n\t\twhile (true) {\n\t\t\tif (x >= 1 && x <= 100) {\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t} else {\n\t\t\t\tcontinue;\n\t\t\t} \n\t\t}\n\t\tsc.close();\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\t\tint x;\n\t\tx = sc.nextInt();\n\t\twhile (true) {\n\t\t\tif (x >= 1 && x <= 100) {\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t} else {\n\t\t\t\tcontinue;\n\t\t\t} \n\t\t}\n\t\tsc.close();\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x;\n\t\tx = sc.nextInt();\n\t\twhile (true) {\n\t\t\tif (x >= 1 && x <= 100) {\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t} else {\n\t\t\t\tcontinue;\n\t\t\t} \n\t\t}\n\t\tsc.close();\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x;\n\t\tx = sc.nextInt();\n\t\twhile (true) {\n\t\t\tif (x >= 1 && x <= 100) {\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t} else {\n\t\t\t\tcontinue;\n\t\t\t} \n\t\t}\n\t\tsc.close();\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int x;",
"x",
"x = sc.nextInt()",
"x",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while (true) {\n\t\t\tif (x >= 1 && x <= 100) {\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t} else {\n\t\t\t\tcontinue;\n\t\t\t} \n\t\t}",
"true",
"{\n\t\t\tif (x >= 1 && x <= 100) {\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t} else {\n\t\t\t\tcontinue;\n\t\t\t} \n\t\t}",
"if (x >= 1 && x <= 100) {\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t} else {\n\t\t\t\tcontinue;\n\t\t\t}",
"x >= 1 && x <= 100",
"x >= 1",
"x",
"1",
"x <= 100",
"x",
"100",
"{\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.println(x * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"break;",
"{\n\t\t\t\tcontinue;\n\t\t\t}",
"continue;",
"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\t\tint x;\n\t\tx = sc.nextInt();\n\t\twhile (true) {\n\t\t\tif (x >= 1 && x <= 100) {\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t} else {\n\t\t\t\tcontinue;\n\t\t\t} \n\t\t}\n\t\tsc.close();\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;\n\t\tx = sc.nextInt();\n\t\twhile (true) {\n\t\t\tif (x >= 1 && x <= 100) {\n\t\t\t\tSystem.out.println(x * x * x);\n\t\t\t\tbreak;\n\t\t\t} else {\n\t\t\t\tcontinue;\n\t\t\t} \n\t\t}\n\t\tsc.close();\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x;
x = sc.nextInt();
while (true) {
if (x >= 1 && x <= 100) {
System.out.println(x * x * x);
break;
} else {
continue;
}
}
sc.close();
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
17,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
0,
13,
4,
18,
13,
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
],
[
11,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
11,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
31,
34
],
[
31,
35
],
[
11,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
9,
42
],
[
42,
43
]
] | [
"import java.util.*;\nimport java.io.*;\n\nclass Main{\n public static void main(String args[])throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int sum=0;\n String s = br.readLine();\n int x = Integer.parseInt(s);\n //sum = x * x * x;\n //Math.pow(a, b);\n sum = (int)Math.pow(x, 3.0);\n System.out.println(sum);\n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"class Main{\n public static void main(String args[])throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int sum=0;\n String s = br.readLine();\n int x = Integer.parseInt(s);\n //sum = x * x * x;\n //Math.pow(a, b);\n sum = (int)Math.pow(x, 3.0);\n System.out.println(sum);\n }\n}",
"Main",
"public static void main(String args[])throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int sum=0;\n String s = br.readLine();\n int x = Integer.parseInt(s);\n //sum = x * x * x;\n //Math.pow(a, b);\n sum = (int)Math.pow(x, 3.0);\n System.out.println(sum);\n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int sum=0;\n String s = br.readLine();\n int x = Integer.parseInt(s);\n //sum = x * x * x;\n //Math.pow(a, b);\n sum = (int)Math.pow(x, 3.0);\n System.out.println(sum);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int sum=0;",
"sum",
"0",
"String s = br.readLine();",
"s",
"br.readLine()",
"br.readLine",
"br",
"int x = Integer.parseInt(s);",
"x",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"sum = (int)Math.pow(x, 3.0)",
"sum",
"(int)Math.pow(x, 3.0)",
"Math.pow",
"Math",
"x",
"3.0",
"System.out.println(sum)",
"System.out.println",
"System.out",
"System",
"System.out",
"sum",
"String args[]",
"args"
] | import java.util.*;
import java.io.*;
class Main{
public static void main(String args[])throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int sum=0;
String s = br.readLine();
int x = Integer.parseInt(s);
//sum = x * x * x;
//Math.pow(a, b);
sum = (int)Math.pow(x, 3.0);
System.out.println(sum);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
0,
13,
2,
2,
13,
13,
13,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
20,
20
],
[
20,
21
],
[
20,
22
],
[
20,
23
],
[
8,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
24,
29
],
[
6,
30
],
[
30,
31
]
] | [
"import java.util.*;\n\nclass Main{\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n n = n * n * n;\n System.out.println(n);\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main{\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n n = n * n * n;\n System.out.println(n);\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n n = n * n * n;\n System.out.println(n);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n n = n * n * n;\n System.out.println(n);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int n = sc.nextInt();",
"n",
"sc.nextInt()",
"sc.nextInt",
"sc",
"n = n * n * n",
"n",
"n * n * n",
"n * n * n",
"n",
"n",
"n",
"System.out.println(n)",
"System.out.println",
"System.out",
"System",
"System.out",
"n",
"String[] args",
"args"
] | import java.util.*;
class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
n = n * n * n;
System.out.println(n);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
0,
13,
4,
18,
13,
0,
13,
2,
2,
13,
13,
13,
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
],
[
8,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
8,
19
],
[
19,
20
],
[
19,
21
],
[
22,
22
],
[
22,
23
],
[
22,
24
],
[
22,
25
],
[
8,
26
],
[
26,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
26,
31
],
[
6,
32
],
[
32,
33
]
] | [
"import java.util.*;\n\nclass Main{\n public static void main(String[] args){\n Scanner a = new Scanner(System.in);\n int x;\n x = a.nextInt();\n x = x*x*x;\n System.out.println(x);\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main{\n public static void main(String[] args){\n Scanner a = new Scanner(System.in);\n int x;\n x = a.nextInt();\n x = x*x*x;\n System.out.println(x);\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner a = new Scanner(System.in);\n int x;\n x = a.nextInt();\n x = x*x*x;\n System.out.println(x);\n }",
"main",
"{\n Scanner a = new Scanner(System.in);\n int x;\n x = a.nextInt();\n x = x*x*x;\n System.out.println(x);\n }",
"Scanner a = new Scanner(System.in);",
"a",
"new Scanner(System.in)",
"int x;",
"x",
"x = a.nextInt()",
"x",
"a.nextInt()",
"a.nextInt",
"a",
"x = x*x*x",
"x",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"System.out.println(x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x",
"String[] args",
"args"
] | import java.util.*;
class Main{
public static void main(String[] args){
Scanner a = new Scanner(System.in);
int x;
x = a.nextInt();
x = x*x*x;
System.out.println(x);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
38,
5,
13,
30,
4,
18,
13,
30,
38,
5,
13,
30,
4,
18,
13,
30,
4,
18,
13,
30,
0,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
2,
13,
13,
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
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
67,
11
],
[
67,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
14,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
20,
27
],
[
27,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
33,
34
],
[
28,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
20,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
39,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
47,
50
],
[
39,
51
],
[
51,
52
],
[
51,
53
],
[
54,
54
],
[
54,
55
],
[
54,
56
],
[
54,
57
],
[
39,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
58,
63
],
[
12,
64
],
[
64,
65
],
[
0,
66
],
[
66,
67
],
[
66,
68
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString word;\n\t\ttry {\n\t\t\tword = reader.readLine();\n\t\t\tint num = Integer.parseInt(word);\n\t\t\tint ans = num * num * num;\n\t\t\tSystem.out.println(ans);\n\t\t} catch (IOException e) {\n\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\te.printStackTrace();\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\treader.close();\n\t\t\t} catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t}\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\tpublic static void main(String[] args) {\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString word;\n\t\ttry {\n\t\t\tword = reader.readLine();\n\t\t\tint num = Integer.parseInt(word);\n\t\t\tint ans = num * num * num;\n\t\t\tSystem.out.println(ans);\n\t\t} catch (IOException e) {\n\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\te.printStackTrace();\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\treader.close();\n\t\t\t} catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString word;\n\t\ttry {\n\t\t\tword = reader.readLine();\n\t\t\tint num = Integer.parseInt(word);\n\t\t\tint ans = num * num * num;\n\t\t\tSystem.out.println(ans);\n\t\t} catch (IOException e) {\n\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\te.printStackTrace();\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\treader.close();\n\t\t\t} catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t}",
"main",
"{\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString word;\n\t\ttry {\n\t\t\tword = reader.readLine();\n\t\t\tint num = Integer.parseInt(word);\n\t\t\tint ans = num * num * num;\n\t\t\tSystem.out.println(ans);\n\t\t} catch (IOException e) {\n\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\te.printStackTrace();\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\treader.close();\n\t\t\t} catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t}",
"BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));",
"reader",
"new BufferedReader(new InputStreamReader(System.in))",
"String word;",
"word",
"try {\n\t\t\tword = reader.readLine();\n\t\t\tint num = Integer.parseInt(word);\n\t\t\tint ans = num * num * num;\n\t\t\tSystem.out.println(ans);\n\t\t} catch (IOException e) {\n\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\te.printStackTrace();\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\treader.close();\n\t\t\t} catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t}",
"catch (IOException e) {\n\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\te.printStackTrace();\n\t\t}",
"IOException e",
"{\n\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\te.printStackTrace();\n\t\t}",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"{\n\t\t\ttry {\n\t\t\t\treader.close();\n\t\t\t} catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t}",
"try {\n\t\t\t\treader.close();\n\t\t\t} catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}",
"catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}",
"IOException e",
"{\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"{\n\t\t\t\treader.close();\n\t\t\t}",
"reader.close()",
"reader.close",
"reader",
"{\n\t\t\tword = reader.readLine();\n\t\t\tint num = Integer.parseInt(word);\n\t\t\tint ans = num * num * num;\n\t\t\tSystem.out.println(ans);\n\t\t}",
"word = reader.readLine()",
"word",
"reader.readLine()",
"reader.readLine",
"reader",
"int num = Integer.parseInt(word);",
"num",
"Integer.parseInt(word)",
"Integer.parseInt",
"Integer",
"word",
"int ans = num * num * num;",
"ans",
"num * num * num",
"num * num * num",
"num",
"num",
"num",
"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\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString word;\n\t\ttry {\n\t\t\tword = reader.readLine();\n\t\t\tint num = Integer.parseInt(word);\n\t\t\tint ans = num * num * num;\n\t\t\tSystem.out.println(ans);\n\t\t} catch (IOException e) {\n\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\te.printStackTrace();\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\treader.close();\n\t\t\t} catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString word;\n\t\ttry {\n\t\t\tword = reader.readLine();\n\t\t\tint num = Integer.parseInt(word);\n\t\t\tint ans = num * num * num;\n\t\t\tSystem.out.println(ans);\n\t\t} catch (IOException e) {\n\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\te.printStackTrace();\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\treader.close();\n\t\t\t} catch (IOException e) {\n\t\t\t\t// TODO ????????????????????? catch ????????????\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t}\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String word;
try {
word = reader.readLine();
int num = Integer.parseInt(word);
int ans = num * num * num;
System.out.println(ans);
} catch (IOException e) {
// TODO ????????????????????? catch ????????????
e.printStackTrace();
} finally {
try {
reader.close();
} catch (IOException e) {
// TODO ????????????????????? catch ????????????
e.printStackTrace();
}
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
6,
27
],
[
27,
28
]
] | [
"import java.util.Scanner;\n\nclass Main\n{\n public static void main(String args[])\n {\n Scanner scan = new Scanner(System.in);\n \n int a = scan.nextInt();\n System.out.println(a * a * a);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main\n{\n public static void main(String args[])\n {\n Scanner scan = new Scanner(System.in);\n \n int a = scan.nextInt();\n System.out.println(a * a * a);\n }\n}",
"Main",
"public static void main(String args[])\n {\n Scanner scan = new Scanner(System.in);\n \n int a = scan.nextInt();\n System.out.println(a * a * a);\n }",
"main",
"{\n Scanner scan = new Scanner(System.in);\n \n int a = scan.nextInt();\n System.out.println(a * a * a);\n }",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int a = scan.nextInt();",
"a",
"scan.nextInt()",
"scan.nextInt",
"scan",
"System.out.println(a * a * a)",
"System.out.println",
"System.out",
"System",
"System.out",
"a * a * a",
"a * a * a",
"a",
"a",
"a",
"String args[]",
"args"
] | import java.util.Scanner;
class Main
{
public static void main(String args[])
{
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
System.out.println(a * a * a);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
33,
5
],
[
33,
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
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
26,
26
],
[
26,
27
],
[
26,
28
],
[
26,
29
],
[
6,
30
],
[
30,
31
],
[
0,
32
],
[
32,
33
],
[
32,
34
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int x = Integer.parseInt(scan.next());\n System.out.println(x*x*x);\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 = Integer.parseInt(scan.next());\n System.out.println(x*x*x);\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int x = Integer.parseInt(scan.next());\n System.out.println(x*x*x);\n }",
"main",
"{\n Scanner scan = new Scanner(System.in);\n int x = Integer.parseInt(scan.next());\n System.out.println(x*x*x);\n }",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int x = Integer.parseInt(scan.next());",
"x",
"Integer.parseInt(scan.next())",
"Integer.parseInt",
"Integer",
"scan.next()",
"scan.next",
"scan",
"System.out.println(x*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int x = Integer.parseInt(scan.next());\n System.out.println(x*x*x);\n }\n}",
"public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int x = Integer.parseInt(scan.next());\n System.out.println(x*x*x);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int x = Integer.parseInt(scan.next());
System.out.println(x*x*x);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
29,
29
],
[
29,
30
],
[
29,
31
],
[
29,
32
],
[
6,
33
],
[
33,
34
]
] | [
"import java.io.*;\n\nclass Main{\n public static void main(String[] args)throws java.io.IOException{\n\t\n\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\tString hoge = input.readLine();\n\tint i = Integer.parseInt(hoge);\n\n\tSystem.out.println(i*i*i);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main{\n public static void main(String[] args)throws java.io.IOException{\n\t\n\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\tString hoge = input.readLine();\n\tint i = Integer.parseInt(hoge);\n\n\tSystem.out.println(i*i*i);\n }\n}",
"Main",
"public static void main(String[] args)throws java.io.IOException{\n\t\n\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\tString hoge = input.readLine();\n\tint i = Integer.parseInt(hoge);\n\n\tSystem.out.println(i*i*i);\n }",
"main",
"{\n\t\n\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\tString hoge = input.readLine();\n\tint i = Integer.parseInt(hoge);\n\n\tSystem.out.println(i*i*i);\n }",
"BufferedReader input = new BufferedReader(new InputStreamReader(System.in));",
"input",
"new BufferedReader(new InputStreamReader(System.in))",
"String hoge = input.readLine();",
"hoge",
"input.readLine()",
"input.readLine",
"input",
"int i = Integer.parseInt(hoge);",
"i",
"Integer.parseInt(hoge)",
"Integer.parseInt",
"Integer",
"hoge",
"System.out.println(i*i*i)",
"System.out.println",
"System.out",
"System",
"System.out",
"i*i*i",
"i*i*i",
"i",
"i",
"i",
"String[] args",
"args"
] | import java.io.*;
class Main{
public static void main(String[] args)throws java.io.IOException{
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
String hoge = input.readLine();
int i = Integer.parseInt(hoge);
System.out.println(i*i*i);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
17,
41,
13,
13,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
36,
5
],
[
36,
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
],
[
19,
23
],
[
8,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
27,
32
],
[
6,
33
],
[
33,
34
],
[
0,
35
],
[
35,
36
],
[
35,
37
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int num = scan.nextInt();\n double pow = Math.pow(num, 3);\n int answer = (int)pow;\n System.out.println(answer);\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 num = scan.nextInt();\n double pow = Math.pow(num, 3);\n int answer = (int)pow;\n System.out.println(answer);\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int num = scan.nextInt();\n double pow = Math.pow(num, 3);\n int answer = (int)pow;\n System.out.println(answer);\n }",
"main",
"{\n Scanner scan = new Scanner(System.in);\n int num = scan.nextInt();\n double pow = Math.pow(num, 3);\n int answer = (int)pow;\n System.out.println(answer);\n }",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int num = scan.nextInt();",
"num",
"scan.nextInt()",
"scan.nextInt",
"scan",
"double pow = Math.pow(num, 3);",
"pow",
"Math.pow(num, 3)",
"Math.pow",
"Math",
"num",
"3",
"int answer = (int)pow;",
"answer",
"(int)pow",
"System.out.println(answer)",
"System.out.println",
"System.out",
"System",
"System.out",
"answer",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int num = scan.nextInt();\n double pow = Math.pow(num, 3);\n int answer = (int)pow;\n System.out.println(answer);\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int num = scan.nextInt();\n double pow = Math.pow(num, 3);\n int answer = (int)pow;\n System.out.println(answer);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int num = scan.nextInt();
double pow = Math.pow(num, 3);
int answer = (int)pow;
System.out.println(answer);
}
} |
[
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,
2,
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
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
26,
26
],
[
26,
27
],
[
26,
28
],
[
26,
29
],
[
9,
30
],
[
30,
31
]
] | [
"import java.util.*;\nimport java.io.*;\nclass Main {\n\tpublic static void main (String[] args) throws java.lang.Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x * x * x);\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"class Main {\n\tpublic static void main (String[] args) throws java.lang.Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x * x * x);\n\t}\n}",
"Main",
"public static void main (String[] args) throws java.lang.Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x * x * x);\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x = sc.nextInt();\n\t\tSystem.out.println(x * x * x);\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 * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String[] args",
"args"
] | import java.util.*;
import java.io.*;
class Main {
public static void main (String[] args) throws java.lang.Exception {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
System.out.println(x * x * x);
}
} |
[
7,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
4,
18,
13,
13,
17,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
3,
4
],
[
3,
5
],
[
5,
6
],
[
6,
7
],
[
6,
8
],
[
5,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
11,
14
],
[
14,
15
],
[
15,
16
],
[
5,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
22,
26
],
[
3,
27
],
[
27,
28
]
] | [
"class Main\n{\n\tpublic static void main(String[] args) throws java.io.IOException\n\t{\n\t\tjava.io.BufferedReader br = new java.io.BufferedReader( new java.io.InputStreamReader( System.in ) );\n\t\t\n\t\tint x = Integer.parseInt( br.readLine() );\n\t\tSystem.out.println( (int) Math.pow( x, 3 ) );\n\t}\n}",
"class Main\n{\n\tpublic static void main(String[] args) throws java.io.IOException\n\t{\n\t\tjava.io.BufferedReader br = new java.io.BufferedReader( new java.io.InputStreamReader( System.in ) );\n\t\t\n\t\tint x = Integer.parseInt( br.readLine() );\n\t\tSystem.out.println( (int) Math.pow( x, 3 ) );\n\t}\n}",
"Main",
"public static void main(String[] args) throws java.io.IOException\n\t{\n\t\tjava.io.BufferedReader br = new java.io.BufferedReader( new java.io.InputStreamReader( System.in ) );\n\t\t\n\t\tint x = Integer.parseInt( br.readLine() );\n\t\tSystem.out.println( (int) Math.pow( x, 3 ) );\n\t}",
"main",
"{\n\t\tjava.io.BufferedReader br = new java.io.BufferedReader( new java.io.InputStreamReader( System.in ) );\n\t\t\n\t\tint x = Integer.parseInt( br.readLine() );\n\t\tSystem.out.println( (int) Math.pow( x, 3 ) );\n\t}",
"java.io.BufferedReader br = new java.io.BufferedReader( new java.io.InputStreamReader( System.in ) );",
"br",
"new java.io.BufferedReader( new java.io.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( (int) Math.pow( x, 3 ) )",
"System.out.println",
"System.out",
"System",
"System.out",
"(int) Math.pow( x, 3 )",
"Math.pow",
"Math",
"x",
"3",
"String[] args",
"args"
] | class Main
{
public static void main(String[] args) throws java.io.IOException
{
java.io.BufferedReader br = new java.io.BufferedReader( new java.io.InputStreamReader( System.in ) );
int x = Integer.parseInt( br.readLine() );
System.out.println( (int) Math.pow( x, 3 ) );
}
} |
[
7,
15,
13,
17,
6,
13,
41,
13,
20,
12,
13,
30,
41,
13,
4,
13,
41,
13,
2,
2,
13,
13,
13,
4,
18,
18,
13,
13,
13,
23,
13,
12,
13,
30,
41,
13,
4,
18,
13,
29,
4,
18,
13,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
4,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
11,
16
],
[
16,
17
],
[
16,
18
],
[
19,
19
],
[
19,
20
],
[
19,
21
],
[
19,
22
],
[
11,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
9,
29
],
[
29,
30
],
[
4,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
33,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
40,
43
]
] | [
"import java.io.*;\n\nclass Main {\n static BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n public static void main(String[] args) throws IOException {\n int x = ReadInt();\n int res = x * x * x;\n System.out.println(res);\n }\n static int ReadInt() throws IOException {\n String s = buf.readLine();\n return Integer.parseInt(s);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main {\n static BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n public static void main(String[] args) throws IOException {\n int x = ReadInt();\n int res = x * x * x;\n System.out.println(res);\n }\n static int ReadInt() throws IOException {\n String s = buf.readLine();\n return Integer.parseInt(s);\n }\n}",
"Main",
"static BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));",
"buf",
"new BufferedReader(new InputStreamReader(System.in))",
"public static void main(String[] args) throws IOException {\n int x = ReadInt();\n int res = x * x * x;\n System.out.println(res);\n }",
"main",
"{\n int x = ReadInt();\n int res = x * x * x;\n System.out.println(res);\n }",
"int x = ReadInt();",
"x",
"ReadInt()",
"ReadInt",
"int res = x * x * x;",
"res",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"System.out.println(res)",
"System.out.println",
"System.out",
"System",
"System.out",
"res",
"String[] args",
"args",
"static int ReadInt() throws IOException {\n String s = buf.readLine();\n return Integer.parseInt(s);\n }",
"ReadInt",
"{\n String s = buf.readLine();\n return Integer.parseInt(s);\n }",
"String s = buf.readLine();",
"s",
"buf.readLine()",
"buf.readLine",
"buf",
"return Integer.parseInt(s);",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s"
] | import java.io.*;
class Main {
static BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
public static void main(String[] args) throws IOException {
int x = ReadInt();
int res = x * x * x;
System.out.println(res);
}
static int ReadInt() throws IOException {
String s = buf.readLine();
return Integer.parseInt(s);
}
} |
[
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,
13,
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
],
[
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
],
[
22,
26
],
[
6,
27
],
[
27,
28
],
[
0,
29
],
[
29,
30
],
[
29,
31
]
] | [
"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\t\tint x= sc.nextInt();\n\n\t\tSystem.out.println((int)Math.pow(x, 3));\n\t}\n\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\t\tint x= sc.nextInt();\n\n\t\tSystem.out.println((int)Math.pow(x, 3));\n\t}\n\n}",
"Main",
"public static void main(String args[]){\n\n\t\tScanner sc = new Scanner (System.in);\n\t\tint x= sc.nextInt();\n\n\t\tSystem.out.println((int)Math.pow(x, 3));\n\t}",
"main",
"{\n\n\t\tScanner sc = new Scanner (System.in);\n\t\tint x= sc.nextInt();\n\n\t\tSystem.out.println((int)Math.pow(x, 3));\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((int)Math.pow(x, 3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(x, 3)",
"Math.pow",
"Math",
"x",
"3",
"String args[]",
"args",
"public class Main{\n\tpublic static void main(String args[]){\n\n\t\tScanner sc = new Scanner (System.in);\n\t\tint x= sc.nextInt();\n\n\t\tSystem.out.println((int)Math.pow(x, 3));\n\t}\n\n}",
"public class Main{\n\tpublic static void main(String args[]){\n\n\t\tScanner sc = new Scanner (System.in);\n\t\tint x= sc.nextInt();\n\n\t\tSystem.out.println((int)Math.pow(x, 3));\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();
System.out.println((int)Math.pow(x, 3));
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
0,
13,
17,
0,
13,
4,
18,
13,
0,
13,
2,
2,
13,
13,
13,
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
],
[
8,
14
],
[
14,
15
],
[
14,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
25,
25
],
[
25,
26
],
[
25,
27
],
[
25,
28
],
[
8,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
6,
35
],
[
35,
36
]
] | [
"import java.util.Scanner;\nclass Main{\n\tpublic static void main(String[]args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x;\n\t\tx =0;\n\t\tx = sc.nextInt();\n\t\tx = x * x * x;\n\t\tSystem.out.println(x);\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\n\tpublic static void main(String[]args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x;\n\t\tx =0;\n\t\tx = sc.nextInt();\n\t\tx = x * x * x;\n\t\tSystem.out.println(x);\n\t}\n}",
"Main",
"public static void main(String[]args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x;\n\t\tx =0;\n\t\tx = sc.nextInt();\n\t\tx = x * x * x;\n\t\tSystem.out.println(x);\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x;\n\t\tx =0;\n\t\tx = sc.nextInt();\n\t\tx = x * x * x;\n\t\tSystem.out.println(x);\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int x;",
"x",
"x =0",
"x",
"0",
"x = sc.nextInt()",
"x",
"sc.nextInt()",
"sc.nextInt",
"sc",
"x = x * x * x",
"x",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"System.out.println(x)",
"System.out.println",
"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;
x =0;
x = sc.nextInt();
x = x * x * x;
System.out.println(x);
}
} |
[
7,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
4,
18,
18,
13,
13,
4,
18,
13,
13,
17,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
3,
4
],
[
3,
5
],
[
5,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
5,
11
],
[
11,
12
],
[
12,
13
],
[
13,
14
],
[
13,
15
],
[
11,
16
],
[
16,
17
],
[
17,
18
],
[
16,
19
],
[
16,
20
],
[
3,
21
],
[
21,
22
]
] | [
"class Main{\n public static void main(String[] args){\n int x = new java.util.Scanner(System.in).nextInt();\n System.out.println((int)Math.pow(x,3));\n }\n}",
"class Main{\n public static void main(String[] args){\n int x = new java.util.Scanner(System.in).nextInt();\n System.out.println((int)Math.pow(x,3));\n }\n}",
"Main",
"public static void main(String[] args){\n int x = new java.util.Scanner(System.in).nextInt();\n System.out.println((int)Math.pow(x,3));\n }",
"main",
"{\n int x = new java.util.Scanner(System.in).nextInt();\n System.out.println((int)Math.pow(x,3));\n }",
"int x = new java.util.Scanner(System.in).nextInt();",
"x",
"new java.util.Scanner(System.in).nextInt()",
"new java.util.Scanner(System.in).nextInt",
"new java.util.Scanner(System.in)",
"System.out.println((int)Math.pow(x,3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(x,3)",
"Math.pow",
"Math",
"x",
"3",
"String[] args",
"args"
] | class Main{
public static void main(String[] args){
int x = new java.util.Scanner(System.in).nextInt();
System.out.println((int)Math.pow(x,3));
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
33,
5
],
[
33,
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
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
8,
27
],
[
27,
28
],
[
28,
29
],
[
6,
30
],
[
30,
31
],
[
0,
32
],
[
32,
33
],
[
32,
34
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\t public static void main(String args[]) {\n\t\t Scanner scanner = new Scanner(System.in);\n\n\t\t int N = scanner.nextInt();\n\t\t System.out.println(N * N * N);\n \tscanner.close();}\n\t\t }\n",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\t public static void main(String args[]) {\n\t\t Scanner scanner = new Scanner(System.in);\n\n\t\t int N = scanner.nextInt();\n\t\t System.out.println(N * N * N);\n \tscanner.close();}\n\t\t }",
"Main",
"public static void main(String args[]) {\n\t\t Scanner scanner = new Scanner(System.in);\n\n\t\t int N = scanner.nextInt();\n\t\t System.out.println(N * N * N);\n \tscanner.close();}",
"main",
"{\n\t\t Scanner scanner = new Scanner(System.in);\n\n\t\t int N = scanner.nextInt();\n\t\t System.out.println(N * N * N);\n \tscanner.close();}",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int N = scanner.nextInt();",
"N",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"System.out.println(N * N * N)",
"System.out.println",
"System.out",
"System",
"System.out",
"N * N * N",
"N * N * N",
"N",
"N",
"N",
"scanner.close()",
"scanner.close",
"scanner",
"String args[]",
"args",
"public class Main {\n\t public static void main(String args[]) {\n\t\t Scanner scanner = new Scanner(System.in);\n\n\t\t int N = scanner.nextInt();\n\t\t System.out.println(N * N * N);\n \tscanner.close();}\n\t\t }",
"public class Main {\n\t public static void main(String args[]) {\n\t\t Scanner scanner = new Scanner(System.in);\n\n\t\t int N = scanner.nextInt();\n\t\t System.out.println(N * N * N);\n \tscanner.close();}\n\t\t }",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner scanner = new Scanner(System.in);
int N = scanner.nextInt();
System.out.println(N * N * N);
scanner.close();}
}
|
[
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,
41,
13,
4,
18,
13,
13,
4,
13,
13,
23,
13,
12,
13,
30,
4,
18,
18,
13,
13,
2,
2,
13,
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
],
[
53,
11
],
[
53,
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
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
14,
32
],
[
32,
33
],
[
32,
34
],
[
12,
35
],
[
35,
36
],
[
53,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
40,
45
],
[
46,
46
],
[
46,
47
],
[
46,
48
],
[
46,
49
],
[
37,
50
],
[
50,
51
],
[
0,
52
],
[
52,
53
],
[
52,
54
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main{\n\tpublic static void main(String[] args) throws IOException{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\n\t\tString str = br.readLine();\n\n\t\tint num = Integer.parseInt(str);\n\n\t\tcalc(num);\n\t}\n\n\tpublic static void calc(int x){\n\t\tSystem.out.println(x*x*x);\n\t}\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\tpublic static void main(String[] args) throws IOException{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\n\t\tString str = br.readLine();\n\n\t\tint num = Integer.parseInt(str);\n\n\t\tcalc(num);\n\t}\n\n\tpublic static void calc(int x){\n\t\tSystem.out.println(x*x*x);\n\t}\n}",
"Main",
"public static void main(String[] args) throws IOException{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\n\t\tString str = br.readLine();\n\n\t\tint num = Integer.parseInt(str);\n\n\t\tcalc(num);\n\t}",
"main",
"{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\n\t\tString str = br.readLine();\n\n\t\tint num = Integer.parseInt(str);\n\n\t\tcalc(num);\n\t}",
"InputStreamReader is = new InputStreamReader(System.in);",
"is",
"new InputStreamReader(System.in)",
"BufferedReader br = new BufferedReader(is);",
"br",
"new BufferedReader(is)",
"String str = br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"int num = Integer.parseInt(str);",
"num",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"calc(num)",
"calc",
"num",
"String[] args",
"args",
"public static void calc(int x){\n\t\tSystem.out.println(x*x*x);\n\t}",
"calc",
"{\n\t\tSystem.out.println(x*x*x);\n\t}",
"System.out.println(x*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"int x",
"x",
"public class Main{\n\tpublic static void main(String[] args) throws IOException{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\n\t\tString str = br.readLine();\n\n\t\tint num = Integer.parseInt(str);\n\n\t\tcalc(num);\n\t}\n\n\tpublic static void calc(int x){\n\t\tSystem.out.println(x*x*x);\n\t}\n}",
"public class Main{\n\tpublic static void main(String[] args) throws IOException{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\n\t\tString str = br.readLine();\n\n\t\tint num = Integer.parseInt(str);\n\n\t\tcalc(num);\n\t}\n\n\tpublic static void calc(int x){\n\t\tSystem.out.println(x*x*x);\n\t}\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{
InputStreamReader is = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(is);
String str = br.readLine();
int num = Integer.parseInt(str);
calc(num);
}
public static void calc(int x){
System.out.println(x*x*x);
}
} |
[
7,
15,
13,
17,
6,
13,
41,
13,
41,
13,
12,
13,
30,
41,
13,
20,
0,
13,
4,
18,
13,
0,
13,
2,
2,
13,
13,
13,
4,
18,
18,
13,
13,
13,
4,
18,
13,
12,
13,
30,
41,
13,
20,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
49,
5
],
[
49,
6
],
[
6,
7
],
[
49,
8
],
[
8,
9
],
[
49,
10
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
13,
14
],
[
13,
15
],
[
12,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
12,
21
],
[
21,
22
],
[
21,
23
],
[
24,
24
],
[
24,
25
],
[
24,
26
],
[
24,
27
],
[
12,
28
],
[
28,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
28,
33
],
[
12,
34
],
[
34,
35
],
[
35,
36
],
[
49,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
43,
44
],
[
44,
45
],
[
37,
46
],
[
46,
47
],
[
0,
48
],
[
48,
49
],
[
48,
50
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n\tint x;\n\tint ans;\n\t\n\tpublic void shori(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tx = sc.nextInt();\n\t\tans = x*x*x;\n\t\tSystem.out.println(ans);\n\t\tsc.close();\n\t}\n\tpublic static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.shori();\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\tint x;\n\tint ans;\n\t\n\tpublic void shori(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tx = sc.nextInt();\n\t\tans = x*x*x;\n\t\tSystem.out.println(ans);\n\t\tsc.close();\n\t}\n\tpublic static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.shori();\n\t}\n}",
"Main",
"int x;",
"x",
"int ans;",
"ans",
"public void shori(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tx = sc.nextInt();\n\t\tans = x*x*x;\n\t\tSystem.out.println(ans);\n\t\tsc.close();\n\t}",
"shori",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tx = sc.nextInt();\n\t\tans = x*x*x;\n\t\tSystem.out.println(ans);\n\t\tsc.close();\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"x = sc.nextInt()",
"x",
"sc.nextInt()",
"sc.nextInt",
"sc",
"ans = x*x*x",
"ans",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"System.out.println(ans)",
"System.out.println",
"System.out",
"System",
"System.out",
"ans",
"sc.close()",
"sc.close",
"sc",
"public static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.shori();\n\t}",
"main",
"{\n\t\tMain obj = new Main();\n\t\tobj.shori();\n\t}",
"Main obj = new Main();",
"obj",
"new Main()",
"obj.shori()",
"obj.shori",
"obj",
"String[] args",
"args",
"public class Main{\n\tint x;\n\tint ans;\n\t\n\tpublic void shori(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tx = sc.nextInt();\n\t\tans = x*x*x;\n\t\tSystem.out.println(ans);\n\t\tsc.close();\n\t}\n\tpublic static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.shori();\n\t}\n}",
"public class Main{\n\tint x;\n\tint ans;\n\t\n\tpublic void shori(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tx = sc.nextInt();\n\t\tans = x*x*x;\n\t\tSystem.out.println(ans);\n\t\tsc.close();\n\t}\n\tpublic static void main(String[] args){\n\t\tMain obj = new Main();\n\t\tobj.shori();\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main{
int x;
int ans;
public void shori(){
Scanner sc = new Scanner(System.in);
x = sc.nextInt();
ans = x*x*x;
System.out.println(ans);
sc.close();
}
public static void main(String[] args){
Main obj = new Main();
obj.shori();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
13,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
2,
13,
13,
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
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
25,
26
],
[
25,
27
],
[
20,
28
],
[
28,
29
],
[
29,
30
],
[
20,
31
],
[
32,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
38,
43
],
[
6,
44
],
[
44,
45
]
] | [
"import java.util.Scanner;\n\nclass Main{\n public static void main(String[] args) {\n \n\t Scanner sc = new Scanner(System.in);\n\t int x = sc.nextInt();\n\t \n\t int y = x;\n\t \n\t for(int i = 0 ; i < 2 ; i++){\n\t\t y = y * x;\n\t }\n\t \n\t System.out.println(y);\n\t \n }\n} ",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\n public static void main(String[] args) {\n \n\t Scanner sc = new Scanner(System.in);\n\t int x = sc.nextInt();\n\t \n\t int y = x;\n\t \n\t for(int i = 0 ; i < 2 ; i++){\n\t\t y = y * x;\n\t }\n\t \n\t System.out.println(y);\n\t \n }\n}",
"Main",
"public static void main(String[] args) {\n \n\t Scanner sc = new Scanner(System.in);\n\t int x = sc.nextInt();\n\t \n\t int y = x;\n\t \n\t for(int i = 0 ; i < 2 ; i++){\n\t\t y = y * x;\n\t }\n\t \n\t System.out.println(y);\n\t \n }",
"main",
"{\n \n\t Scanner sc = new Scanner(System.in);\n\t int x = sc.nextInt();\n\t \n\t int y = x;\n\t \n\t for(int i = 0 ; i < 2 ; i++){\n\t\t y = y * x;\n\t }\n\t \n\t System.out.println(y);\n\t \n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int x = sc.nextInt();",
"x",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int y = x;",
"y",
"x",
"for(int i = 0 ; i < 2 ; i++){\n\t\t y = y * x;\n\t }",
"int i = 0 ;",
"int i = 0 ;",
"i",
"0",
"i < 2",
"i",
"2",
"i++",
"i++",
"i",
"{\n\t\t y = y * x;\n\t }",
"{\n\t\t y = y * x;\n\t }",
"y = y * x",
"y",
"y * x",
"y",
"x",
"System.out.println(y)",
"System.out.println",
"System.out",
"System",
"System.out",
"y",
"String[] args",
"args"
] | import java.util.Scanner;
class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int y = x;
for(int i = 0 ; i < 2 ; i++){
y = y * x;
}
System.out.println(y);
}
} |
[
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,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
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
],
[
42,
14
],
[
42,
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
],
[
27,
28
],
[
17,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
35,
35
],
[
35,
36
],
[
35,
37
],
[
35,
38
],
[
15,
39
],
[
39,
40
],
[
0,
41
],
[
41,
42
],
[
41,
43
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.Scanner;\n\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\t\tScanner scan=new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n\t\tint x=scan.nextInt();\n\t\tSystem.out.println(x*x*x);\n\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.Scanner;",
"Scanner",
"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\t\tScanner scan=new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n\t\tint x=scan.nextInt();\n\t\tSystem.out.println(x*x*x);\n\n\t}\n\n}",
"Main",
"public static void main(String[] args) throws IOException {\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tScanner scan=new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n\t\tint x=scan.nextInt();\n\t\tSystem.out.println(x*x*x);\n\n\t}",
"main",
"{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tScanner scan=new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n\t\tint x=scan.nextInt();\n\t\tSystem.out.println(x*x*x);\n\n\t}",
"BufferedReader br=new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"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*x*x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x*x*x",
"x*x*x",
"x",
"x",
"x",
"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\t\tScanner scan=new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n\t\tint x=scan.nextInt();\n\t\tSystem.out.println(x*x*x);\n\n\t}\n\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\t\tScanner scan=new Scanner(new BufferedReader(new InputStreamReader(System.in)));\n\t\tint x=scan.nextInt();\n\t\tSystem.out.println(x*x*x);\n\n\t}\n\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
Scanner scan=new Scanner(new BufferedReader(new InputStreamReader(System.in)));
int x=scan.nextInt();
System.out.println(x*x*x);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
13,
17,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
47,
5
],
[
47,
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
],
[
25,
28
],
[
28,
29
],
[
28,
30
],
[
8,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
33,
36
],
[
33,
37
],
[
8,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
38,
43
],
[
6,
44
],
[
44,
45
],
[
0,
46
],
[
46,
47
],
[
46,
48
]
] | [
"import java.io.*;\n\npublic class Main{\n public static void main(String[] args) throws Exception{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] param = input.split(\" \");\n int x = Integer.parseInt(param[0]);\n\n double ans = Math.pow(x, 3);\n System.out.println((int)ans);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main{\n public static void main(String[] args) throws Exception{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] param = input.split(\" \");\n int x = Integer.parseInt(param[0]);\n\n double ans = Math.pow(x, 3);\n System.out.println((int)ans);\n }\n}",
"Main",
"public static void main(String[] args) throws Exception{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] param = input.split(\" \");\n int x = Integer.parseInt(param[0]);\n\n double ans = Math.pow(x, 3);\n System.out.println((int)ans);\n }",
"main",
"{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] param = input.split(\" \");\n int x = Integer.parseInt(param[0]);\n\n double ans = Math.pow(x, 3);\n System.out.println((int)ans);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String input = br.readLine();",
"input",
"br.readLine()",
"br.readLine",
"br",
"String[] param = input.split(\" \");",
"param",
"input.split(\" \")",
"input.split",
"input",
"\" \"",
"int x = Integer.parseInt(param[0]);",
"x",
"Integer.parseInt(param[0])",
"Integer.parseInt",
"Integer",
"param[0]",
"param",
"0",
"double ans = Math.pow(x, 3);",
"ans",
"Math.pow(x, 3)",
"Math.pow",
"Math",
"x",
"3",
"System.out.println((int)ans)",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)ans",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args) throws Exception{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] param = input.split(\" \");\n int x = Integer.parseInt(param[0]);\n\n double ans = Math.pow(x, 3);\n System.out.println((int)ans);\n }\n}",
"public class Main{\n public static void main(String[] args) throws Exception{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] param = input.split(\" \");\n int x = Integer.parseInt(param[0]);\n\n double ans = Math.pow(x, 3);\n System.out.println((int)ans);\n }\n}",
"Main"
] | import java.io.*;
public class Main{
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String input = br.readLine();
String[] param = input.split(" ");
int x = Integer.parseInt(param[0]);
double ans = Math.pow(x, 3);
System.out.println((int)ans);
}
} |
[
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,
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
],
[
39,
11
],
[
39,
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
],
[
32,
33
],
[
31,
34
],
[
31,
35
],
[
12,
36
],
[
36,
37
],
[
0,
38
],
[
38,
39
],
[
38,
40
]
] | [
"\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n int readInt = Integer.parseInt(reader.readLine());\n System.out.println((int) Math.pow(readInt, 3));\n }\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\n public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n int readInt = Integer.parseInt(reader.readLine());\n System.out.println((int) Math.pow(readInt, 3));\n }\n \n}",
"Main",
"public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n int readInt = Integer.parseInt(reader.readLine());\n System.out.println((int) Math.pow(readInt, 3));\n }",
"main",
"{\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n int readInt = Integer.parseInt(reader.readLine());\n System.out.println((int) Math.pow(readInt, 3));\n }",
"BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));",
"reader",
"new BufferedReader(new InputStreamReader(System.in))",
"int readInt = Integer.parseInt(reader.readLine());",
"readInt",
"Integer.parseInt(reader.readLine())",
"Integer.parseInt",
"Integer",
"reader.readLine()",
"reader.readLine",
"reader",
"System.out.println((int) Math.pow(readInt, 3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int) Math.pow(readInt, 3)",
"Math.pow",
"Math",
"readInt",
"3",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n int readInt = Integer.parseInt(reader.readLine());\n System.out.println((int) Math.pow(readInt, 3));\n }\n \n}",
"public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n int readInt = Integer.parseInt(reader.readLine());\n System.out.println((int) Math.pow(readInt, 3));\n }\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 reader = new BufferedReader(new InputStreamReader(System.in));
int readInt = Integer.parseInt(reader.readLine());
System.out.println((int) Math.pow(readInt, 3));
}
} |
[
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,
4,
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
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
25,
29
],
[
9,
30
],
[
30,
31
]
] | [
"import java.lang.*;\nimport java.util.*;\n\nclass Main {\n\tpublic static void main(String[] args) throws java.io.IOException {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tSystem.out.println((int)Math.pow(a, 3));\n\t}\n}",
"import java.lang.*;",
"lang.*",
"java",
"import java.util.*;",
"util.*",
"java",
"class Main {\n\tpublic static void main(String[] args) throws java.io.IOException {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tSystem.out.println((int)Math.pow(a, 3));\n\t}\n}",
"Main",
"public static void main(String[] args) throws java.io.IOException {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tSystem.out.println((int)Math.pow(a, 3));\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tSystem.out.println((int)Math.pow(a, 3));\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"System.out.println((int)Math.pow(a, 3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(a, 3)",
"Math.pow",
"Math",
"a",
"3",
"String[] args",
"args"
] | import java.lang.*;
import java.util.*;
class Main {
public static void main(String[] args) throws java.io.IOException {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
System.out.println((int)Math.pow(a, 3));
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
4,
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
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
28,
32
],
[
6,
33
],
[
33,
34
]
] | [
"import java.io.*;\n\nclass Main{\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tint num = Integer.parseInt(line);\n\t\tSystem.out.println((int)Math.pow(num,3));\n\t}\n}\t\t",
"import java.io.*;",
"io.*",
"java",
"class Main{\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tint num = Integer.parseInt(line);\n\t\tSystem.out.println((int)Math.pow(num,3));\n\t}\n}",
"Main",
"public static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tint num = Integer.parseInt(line);\n\t\tSystem.out.println((int)Math.pow(num,3));\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tint num = Integer.parseInt(line);\n\t\tSystem.out.println((int)Math.pow(num,3));\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String line = br.readLine();",
"line",
"br.readLine()",
"br.readLine",
"br",
"int num = Integer.parseInt(line);",
"num",
"Integer.parseInt(line)",
"Integer.parseInt",
"Integer",
"line",
"System.out.println((int)Math.pow(num,3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(num,3)",
"Math.pow",
"Math",
"num",
"3",
"String[] args",
"args"
] | import java.io.*;
class Main{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String line = br.readLine();
int num = Integer.parseInt(line);
System.out.println((int)Math.pow(num,3));
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
38,
5,
13,
30,
4,
18,
13,
5,
13,
30,
4,
18,
13,
5,
13,
30,
4,
18,
13,
30,
41,
13,
4,
18,
13,
41,
13,
0,
13,
4,
18,
13,
13,
14,
40,
2,
2,
13,
17,
2,
13,
17,
30,
37,
20,
4,
18,
18,
13,
13,
4,
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
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
18,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
29,
30
],
[
18,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
18,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
37,
43
],
[
43,
44
],
[
37,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
47,
50
],
[
37,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
57,
58
],
[
57,
59
],
[
51,
60
],
[
60,
61
],
[
61,
62
],
[
37,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
63,
68
],
[
68,
69
],
[
69,
70
],
[
68,
71
],
[
68,
72
],
[
12,
73
],
[
73,
74
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\nclass Main {\n\n\tpublic static void main(String[] args) {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\ttry {\n\t\t\tString input = br.readLine();\n\t\t\tint x;\n\n\t\t\tx = Integer.parseInt(input);\n\t\t\t\n\t\t\tif (!(x >= 1 && x <= 100)) {\n\t\t\t\tthrow new IllegalArgumentException();\n\t\t\t}\n\t\t\t\n\t\t\tSystem.out.println((int)Math.pow(x, 3));\n\t\t\n\t\t} catch(NumberFormatException e) {\n\t\t\te.printStackTrace();\n\t\t} catch(IllegalArgumentException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"class Main {\n\n\tpublic static void main(String[] args) {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\ttry {\n\t\t\tString input = br.readLine();\n\t\t\tint x;\n\n\t\t\tx = Integer.parseInt(input);\n\t\t\t\n\t\t\tif (!(x >= 1 && x <= 100)) {\n\t\t\t\tthrow new IllegalArgumentException();\n\t\t\t}\n\t\t\t\n\t\t\tSystem.out.println((int)Math.pow(x, 3));\n\t\t\n\t\t} catch(NumberFormatException e) {\n\t\t\te.printStackTrace();\n\t\t} catch(IllegalArgumentException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\ttry {\n\t\t\tString input = br.readLine();\n\t\t\tint x;\n\n\t\t\tx = Integer.parseInt(input);\n\t\t\t\n\t\t\tif (!(x >= 1 && x <= 100)) {\n\t\t\t\tthrow new IllegalArgumentException();\n\t\t\t}\n\t\t\t\n\t\t\tSystem.out.println((int)Math.pow(x, 3));\n\t\t\n\t\t} catch(NumberFormatException e) {\n\t\t\te.printStackTrace();\n\t\t} catch(IllegalArgumentException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\ttry {\n\t\t\tString input = br.readLine();\n\t\t\tint x;\n\n\t\t\tx = Integer.parseInt(input);\n\t\t\t\n\t\t\tif (!(x >= 1 && x <= 100)) {\n\t\t\t\tthrow new IllegalArgumentException();\n\t\t\t}\n\t\t\t\n\t\t\tSystem.out.println((int)Math.pow(x, 3));\n\t\t\n\t\t} catch(NumberFormatException e) {\n\t\t\te.printStackTrace();\n\t\t} catch(IllegalArgumentException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"try {\n\t\t\tString input = br.readLine();\n\t\t\tint x;\n\n\t\t\tx = Integer.parseInt(input);\n\t\t\t\n\t\t\tif (!(x >= 1 && x <= 100)) {\n\t\t\t\tthrow new IllegalArgumentException();\n\t\t\t}\n\t\t\t\n\t\t\tSystem.out.println((int)Math.pow(x, 3));\n\t\t\n\t\t} catch(NumberFormatException e) {\n\t\t\te.printStackTrace();\n\t\t} catch(IllegalArgumentException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"catch(NumberFormatException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"NumberFormatException e",
"{\n\t\t\te.printStackTrace();\n\t\t}",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"catch(IllegalArgumentException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"IllegalArgumentException e",
"{\n\t\t\te.printStackTrace();\n\t\t}",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}",
"IOException e",
"{\n\t\t\te.printStackTrace();\n\t\t}",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"{\n\t\t\tString input = br.readLine();\n\t\t\tint x;\n\n\t\t\tx = Integer.parseInt(input);\n\t\t\t\n\t\t\tif (!(x >= 1 && x <= 100)) {\n\t\t\t\tthrow new IllegalArgumentException();\n\t\t\t}\n\t\t\t\n\t\t\tSystem.out.println((int)Math.pow(x, 3));\n\t\t\n\t\t}",
"String input = br.readLine();",
"input",
"br.readLine()",
"br.readLine",
"br",
"int x;",
"x",
"x = Integer.parseInt(input)",
"x",
"Integer.parseInt(input)",
"Integer.parseInt",
"Integer",
"input",
"if (!(x >= 1 && x <= 100)) {\n\t\t\t\tthrow new IllegalArgumentException();\n\t\t\t}",
"!(x >= 1 && x <= 100)",
"(x >= 1 && x <= 100)",
"x >= 1",
"x",
"1",
"x <= 100",
"x",
"100",
"{\n\t\t\t\tthrow new IllegalArgumentException();\n\t\t\t}",
"throw new IllegalArgumentException();",
"new IllegalArgumentException()",
"System.out.println((int)Math.pow(x, 3))",
"System.out.println",
"System.out",
"System",
"System.out",
"(int)Math.pow(x, 3)",
"Math.pow",
"Math",
"x",
"3",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class Main {
public static void main(String[] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
try {
String input = br.readLine();
int x;
x = Integer.parseInt(input);
if (!(x >= 1 && x <= 100)) {
throw new IllegalArgumentException();
}
System.out.println((int)Math.pow(x, 3));
} catch(NumberFormatException e) {
e.printStackTrace();
} catch(IllegalArgumentException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
17,
38,
5,
13,
30,
5,
13,
30,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
13,
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
],
[
53,
11
],
[
53,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
18,
22
],
[
22,
23
],
[
22,
24
],
[
18,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
25,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
25,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
25,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
40,
45
],
[
46,
46
],
[
46,
47
],
[
46,
48
],
[
46,
49
],
[
12,
50
],
[
50,
51
],
[
0,
52
],
[
52,
53
],
[
52,
54
]
] | [
"\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n public static void main(String[] args) {\n int num = 0;\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n int x = Integer.parseInt(s);\n System.out.println(x * x * x);\n } catch (NumberFormatException e) {\n } catch (IOException e) {\n }\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\n public static void main(String[] args) {\n int num = 0;\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n int x = Integer.parseInt(s);\n System.out.println(x * x * x);\n } catch (NumberFormatException e) {\n } catch (IOException e) {\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n int num = 0;\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n int x = Integer.parseInt(s);\n System.out.println(x * x * x);\n } catch (NumberFormatException e) {\n } catch (IOException e) {\n }\n }",
"main",
"{\n int num = 0;\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n int x = Integer.parseInt(s);\n System.out.println(x * x * x);\n } catch (NumberFormatException e) {\n } catch (IOException e) {\n }\n }",
"int num = 0;",
"num",
"0",
"try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n int x = Integer.parseInt(s);\n System.out.println(x * x * x);\n } catch (NumberFormatException e) {\n } catch (IOException e) {\n }",
"catch (NumberFormatException e) {\n }",
"NumberFormatException e",
"{\n }",
"catch (IOException e) {\n }",
"IOException e",
"{\n }",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n int x = Integer.parseInt(s);\n System.out.println(x * x * x);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String s = br.readLine();",
"s",
"br.readLine()",
"br.readLine",
"br",
"int x = Integer.parseInt(s);",
"x",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"System.out.println(x * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) {\n int num = 0;\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n int x = Integer.parseInt(s);\n System.out.println(x * x * x);\n } catch (NumberFormatException e) {\n } catch (IOException e) {\n }\n }\n}",
"public class Main {\n\n public static void main(String[] args) {\n int num = 0;\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n int x = Integer.parseInt(s);\n System.out.println(x * x * x);\n } catch (NumberFormatException e) {\n } catch (IOException e) {\n }\n }\n}",
"Main"
] |
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
int num = 0;
try {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s = br.readLine();
int x = Integer.parseInt(s);
System.out.println(x * x * x);
} catch (NumberFormatException e) {
} catch (IOException e) {
}
}
} |
[
7,
15,
13,
17,
6,
13,
41,
13,
17,
12,
13,
30,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
13,
4,
18,
18,
13,
13,
13,
23,
13,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
4,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
13,
14
],
[
14,
15
],
[
14,
16
],
[
12,
17
],
[
17,
18
],
[
17,
19
],
[
12,
20
],
[
20,
21
],
[
21,
22
],
[
12,
23
],
[
24,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
11,
28
],
[
28,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
28,
33
],
[
9,
34
],
[
34,
35
],
[
0,
36
],
[
59,
37
],
[
59,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
44,
45
],
[
44,
46
],
[
40,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
50,
51
],
[
40,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
38,
56
],
[
56,
57
],
[
0,
58
],
[
58,
59
],
[
58,
60
]
] | [
"import java.util.Scanner;\n\nclass calc {\n\n\tint ans = 1;\n\n\tvoid func(int n) {\n\t\tfor (int i = 0; i < 3; i++) {\n\t\t\tans *= n;\n\t\t}\n\t\tSystem.out.println(ans);\n\t}\n\n}\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tcalc cl = new calc();\n\n\t\tint n = sc.nextInt();\n\n\t\tcl.func(n);\n\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class calc {\n\n\tint ans = 1;\n\n\tvoid func(int n) {\n\t\tfor (int i = 0; i < 3; i++) {\n\t\t\tans *= n;\n\t\t}\n\t\tSystem.out.println(ans);\n\t}\n\n}",
"calc",
"int ans = 1;",
"ans",
"1",
"void func(int n) {\n\t\tfor (int i = 0; i < 3; i++) {\n\t\t\tans *= n;\n\t\t}\n\t\tSystem.out.println(ans);\n\t}",
"func",
"{\n\t\tfor (int i = 0; i < 3; i++) {\n\t\t\tans *= n;\n\t\t}\n\t\tSystem.out.println(ans);\n\t}",
"for (int i = 0; i < 3; i++) {\n\t\t\tans *= n;\n\t\t}",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < 3",
"i",
"3",
"i++",
"i++",
"i",
"{\n\t\t\tans *= n;\n\t\t}",
"{\n\t\t\tans *= n;\n\t\t}",
"ans *= n",
"ans",
"n",
"System.out.println(ans)",
"System.out.println",
"System.out",
"System",
"System.out",
"ans",
"int n",
"n",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tcalc cl = new calc();\n\n\t\tint n = sc.nextInt();\n\n\t\tcl.func(n);\n\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tcalc cl = new calc();\n\n\t\tint n = sc.nextInt();\n\n\t\tcl.func(n);\n\n\t}",
"main",
"{\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tcalc cl = new calc();\n\n\t\tint n = sc.nextInt();\n\n\t\tcl.func(n);\n\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"calc cl = new calc();",
"cl",
"new calc()",
"int n = sc.nextInt();",
"n",
"sc.nextInt()",
"sc.nextInt",
"sc",
"cl.func(n)",
"cl.func",
"cl",
"n",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tcalc cl = new calc();\n\n\t\tint n = sc.nextInt();\n\n\t\tcl.func(n);\n\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tcalc cl = new calc();\n\n\t\tint n = sc.nextInt();\n\n\t\tcl.func(n);\n\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
class calc {
int ans = 1;
void func(int n) {
for (int i = 0; i < 3; i++) {
ans *= n;
}
System.out.println(ans);
}
}
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
calc cl = new calc();
int n = sc.nextInt();
cl.func(n);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
0,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
32,
5
],
[
32,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
8,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
8,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
19,
24
],
[
25,
25
],
[
25,
26
],
[
25,
27
],
[
25,
28
],
[
6,
29
],
[
29,
30
],
[
0,
31
],
[
31,
32
],
[
31,
33
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n\n\t@SuppressWarnings(\"resource\")\n\tpublic static void main(String[] args){\n\t\tScanner in = new Scanner(System.in);\n\t\tint x; \n\t\tx = in.nextInt();\n\t\tSystem.out.println(x * x * x);\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\n\t@SuppressWarnings(\"resource\")\n\tpublic static void main(String[] args){\n\t\tScanner in = new Scanner(System.in);\n\t\tint x; \n\t\tx = in.nextInt();\n\t\tSystem.out.println(x * x * x);\n\t}\n}",
"Main",
"@SuppressWarnings(\"resource\")\n\tpublic static void main(String[] args){\n\t\tScanner in = new Scanner(System.in);\n\t\tint x; \n\t\tx = in.nextInt();\n\t\tSystem.out.println(x * x * x);\n\t}",
"main",
"{\n\t\tScanner in = new Scanner(System.in);\n\t\tint x; \n\t\tx = in.nextInt();\n\t\tSystem.out.println(x * x * x);\n\t}",
"Scanner in = new Scanner(System.in);",
"in",
"new Scanner(System.in)",
"int x;",
"x",
"x = in.nextInt()",
"x",
"in.nextInt()",
"in.nextInt",
"in",
"System.out.println(x * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String[] args",
"args",
"public class Main{\n\n\t@SuppressWarnings(\"resource\")\n\tpublic static void main(String[] args){\n\t\tScanner in = new Scanner(System.in);\n\t\tint x; \n\t\tx = in.nextInt();\n\t\tSystem.out.println(x * x * x);\n\t}\n}",
"public class Main{\n\n\t@SuppressWarnings(\"resource\")\n\tpublic static void main(String[] args){\n\t\tScanner in = new Scanner(System.in);\n\t\tint x; \n\t\tx = in.nextInt();\n\t\tSystem.out.println(x * x * x);\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main{
@SuppressWarnings("resource")
public static void main(String[] args){
Scanner in = new Scanner(System.in);
int x;
x = in.nextInt();
System.out.println(x * x * x);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
0,
13,
2,
2,
13,
13,
13,
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
],
[
39,
8
],
[
39,
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
],
[
20,
22
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
11,
27
],
[
27,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
27,
32
],
[
32,
33
],
[
33,
34
],
[
32,
35
],
[
9,
36
],
[
36,
37
],
[
0,
38
],
[
38,
39
],
[
38,
40
]
] | [
"import java.lang.*;\nimport java.util.*;\npublic class Main {\n public static void main(String[] args) {\n Scanner stdId = new Scanner(System.in);\n int x = stdId.nextInt();\n x = x * x * x;\n System.out.println(String.valueOf(x));\n }\n}",
"import java.lang.*;",
"lang.*",
"java",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n public static void main(String[] args) {\n Scanner stdId = new Scanner(System.in);\n int x = stdId.nextInt();\n x = x * x * x;\n System.out.println(String.valueOf(x));\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner stdId = new Scanner(System.in);\n int x = stdId.nextInt();\n x = x * x * x;\n System.out.println(String.valueOf(x));\n }",
"main",
"{\n Scanner stdId = new Scanner(System.in);\n int x = stdId.nextInt();\n x = x * x * x;\n System.out.println(String.valueOf(x));\n }",
"Scanner stdId = new Scanner(System.in);",
"stdId",
"new Scanner(System.in)",
"int x = stdId.nextInt();",
"x",
"stdId.nextInt()",
"stdId.nextInt",
"stdId",
"x = x * x * x",
"x",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"System.out.println(String.valueOf(x))",
"System.out.println",
"System.out",
"System",
"System.out",
"String.valueOf(x)",
"String.valueOf",
"String",
"x",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner stdId = new Scanner(System.in);\n int x = stdId.nextInt();\n x = x * x * x;\n System.out.println(String.valueOf(x));\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner stdId = new Scanner(System.in);\n int x = stdId.nextInt();\n x = x * x * x;\n System.out.println(String.valueOf(x));\n }\n}",
"Main"
] | import java.lang.*;
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner stdId = new Scanner(System.in);
int x = stdId.nextInt();
x = x * x * x;
System.out.println(String.valueOf(x));
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
18,
13,
13,
4,
18,
13,
30,
41,
13,
20,
41,
13,
4,
18,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
4,
18,
13,
13,
17,
4,
18,
18,
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
],
[
62,
11
],
[
62,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
19,
24
],
[
24,
25
],
[
25,
26
],
[
15,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
27,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
27,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
40,
43
],
[
27,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
47,
48
],
[
46,
49
],
[
46,
50
],
[
27,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
51,
56
],
[
56,
57
],
[
57,
58
],
[
12,
59
],
[
59,
60
],
[
0,
61
],
[
61,
62
],
[
61,
63
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\n/**\n *\n * @author yoshkur\n */\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString line = br.readLine().trim();\n\t\t\tDouble a = Double.parseDouble(line);\n\t\t\tDouble anser = Math.pow(a, 3d);\n\t\t\tSystem.out.println(anser.intValue());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}\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\n\tpublic static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString line = br.readLine().trim();\n\t\t\tDouble a = Double.parseDouble(line);\n\t\t\tDouble anser = Math.pow(a, 3d);\n\t\t\tSystem.out.println(anser.intValue());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString line = br.readLine().trim();\n\t\t\tDouble a = Double.parseDouble(line);\n\t\t\tDouble anser = Math.pow(a, 3d);\n\t\t\tSystem.out.println(anser.intValue());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}",
"main",
"{\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString line = br.readLine().trim();\n\t\t\tDouble a = Double.parseDouble(line);\n\t\t\tDouble anser = Math.pow(a, 3d);\n\t\t\tSystem.out.println(anser.intValue());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}",
"try {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString line = br.readLine().trim();\n\t\t\tDouble a = Double.parseDouble(line);\n\t\t\tDouble anser = Math.pow(a, 3d);\n\t\t\tSystem.out.println(anser.intValue());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}",
"catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}",
"IOException | NumberFormatException e",
"{\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}",
"System.err.println(e.getLocalizedMessage())",
"System.err.println",
"System.err",
"System",
"System.err",
"e.getLocalizedMessage()",
"e.getLocalizedMessage",
"e",
"{\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString line = br.readLine().trim();\n\t\t\tDouble a = Double.parseDouble(line);\n\t\t\tDouble anser = Math.pow(a, 3d);\n\t\t\tSystem.out.println(anser.intValue());\n\n\t\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String line = br.readLine().trim();",
"line",
"br.readLine().trim()",
"br.readLine().trim",
"br.readLine()",
"br.readLine",
"br",
"Double a = Double.parseDouble(line);",
"a",
"Double.parseDouble(line)",
"Double.parseDouble",
"Double",
"line",
"Double anser = Math.pow(a, 3d);",
"anser",
"Math.pow(a, 3d)",
"Math.pow",
"Math",
"a",
"3d",
"System.out.println(anser.intValue())",
"System.out.println",
"System.out",
"System",
"System.out",
"anser.intValue()",
"anser.intValue",
"anser",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString line = br.readLine().trim();\n\t\t\tDouble a = Double.parseDouble(line);\n\t\t\tDouble anser = Math.pow(a, 3d);\n\t\t\tSystem.out.println(anser.intValue());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString line = br.readLine().trim();\n\t\t\tDouble a = Double.parseDouble(line);\n\t\t\tDouble anser = Math.pow(a, 3d);\n\t\t\tSystem.out.println(anser.intValue());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/**
*
* @author yoshkur
*/
public class Main {
public static void main(String[] args) {
try {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String line = br.readLine().trim();
Double a = Double.parseDouble(line);
Double anser = Math.pow(a, 3d);
System.out.println(anser.intValue());
} catch (IOException | NumberFormatException e) {
System.err.println(e.getLocalizedMessage());
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
4,
18,
13,
4,
18,
20,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
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
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
11,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
23,
23
],
[
23,
24
],
[
23,
25
],
[
23,
26
],
[
6,
27
],
[
27,
28
],
[
0,
29
],
[
29,
30
],
[
29,
31
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n public static void main( String... args) {\n int x = Integer.parseInt( new Scanner( System.in).nextLine());\n System.out.println( x * x * x);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main( String... args) {\n int x = Integer.parseInt( new Scanner( System.in).nextLine());\n System.out.println( x * x * x);\n }\n}",
"Main",
"public static void main( String... args) {\n int x = Integer.parseInt( new Scanner( System.in).nextLine());\n System.out.println( x * x * x);\n }",
"main",
"{\n int x = Integer.parseInt( new Scanner( System.in).nextLine());\n System.out.println( x * x * x);\n }",
"int x = Integer.parseInt( new Scanner( System.in).nextLine());",
"x",
"Integer.parseInt( new Scanner( System.in).nextLine())",
"Integer.parseInt",
"Integer",
"new Scanner( System.in).nextLine()",
"new Scanner( System.in).nextLine",
"new Scanner( System.in)",
"System.out.println( x * x * x)",
"System.out.println",
"System.out",
"System",
"System.out",
"x * x * x",
"x * x * x",
"x",
"x",
"x",
"String... args",
"args",
"public class Main {\n public static void main( String... args) {\n int x = Integer.parseInt( new Scanner( System.in).nextLine());\n System.out.println( x * x * x);\n }\n}",
"public class Main {\n public static void main( String... args) {\n int x = Integer.parseInt( new Scanner( System.in).nextLine());\n System.out.println( x * x * x);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main( String... args) {
int x = Integer.parseInt( new Scanner( System.in).nextLine());
System.out.println( x * x * x);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
4,
13,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
23,
13,
12,
13,
30,
41,
13,
17,
41,
13,
17,
38,
5,
13,
30,
37,
20,
30,
14,
2,
13,
17,
30,
38,
5,
13,
30,
37,
20,
30,
4,
18,
13,
30,
0,
13,
20,
41,
13,
4,
18,
13,
0,
13,
4,
18,
13,
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
],
[
0,
13
],
[
13,
14
],
[
13,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
22,
24
],
[
17,
25
],
[
25,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
25,
30
],
[
31,
31
],
[
31,
32
],
[
31,
33
],
[
31,
34
],
[
15,
35
],
[
35,
36
],
[
13,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
43,
44
],
[
43,
45
],
[
39,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
50,
51
],
[
46,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
61,
62
],
[
62,
63
],
[
58,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
46,
68
],
[
68,
69
],
[
69,
70
],
[
69,
71
],
[
68,
72
],
[
72,
73
],
[
72,
74
],
[
74,
75
],
[
75,
76
],
[
68,
77
],
[
77,
78
],
[
77,
79
],
[
79,
80
],
[
80,
81
],
[
79,
82
],
[
39,
83
],
[
83,
84
],
[
37,
85
],
[
85,
86
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.InputStreamReader;\n\nclass Main {\n public static void main(String[] args) {\n long n = readLong(System.in);\n System.out.println(n * n * n);\n }\n\n private static long readLong(InputStream in) {\n long n = 0;\n BufferedReader reader = null;\n\n try {\n reader = new BufferedReader(new InputStreamReader(in));\n String line = reader.readLine();\n n = Long.parseLong(line);\n } catch (IOException e) {\n throw new RuntimeException(e);\n } finally {\n if (reader != null) {\n try {\n reader.close();\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n }\n return 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",
"class Main {\n public static void main(String[] args) {\n long n = readLong(System.in);\n System.out.println(n * n * n);\n }\n\n private static long readLong(InputStream in) {\n long n = 0;\n BufferedReader reader = null;\n\n try {\n reader = new BufferedReader(new InputStreamReader(in));\n String line = reader.readLine();\n n = Long.parseLong(line);\n } catch (IOException e) {\n throw new RuntimeException(e);\n } finally {\n if (reader != null) {\n try {\n reader.close();\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n }\n return n;\n\n }\n}",
"Main",
"public static void main(String[] args) {\n long n = readLong(System.in);\n System.out.println(n * n * n);\n }",
"main",
"{\n long n = readLong(System.in);\n System.out.println(n * n * n);\n }",
"long n = readLong(System.in);",
"n",
"readLong(System.in)",
"readLong",
"System.in",
"System",
"System.in",
"System.out.println(n * n * n)",
"System.out.println",
"System.out",
"System",
"System.out",
"n * n * n",
"n * n * n",
"n",
"n",
"n",
"String[] args",
"args",
"private static long readLong(InputStream in) {\n long n = 0;\n BufferedReader reader = null;\n\n try {\n reader = new BufferedReader(new InputStreamReader(in));\n String line = reader.readLine();\n n = Long.parseLong(line);\n } catch (IOException e) {\n throw new RuntimeException(e);\n } finally {\n if (reader != null) {\n try {\n reader.close();\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n }\n return n;\n\n }",
"readLong",
"{\n long n = 0;\n BufferedReader reader = null;\n\n try {\n reader = new BufferedReader(new InputStreamReader(in));\n String line = reader.readLine();\n n = Long.parseLong(line);\n } catch (IOException e) {\n throw new RuntimeException(e);\n } finally {\n if (reader != null) {\n try {\n reader.close();\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n }\n return n;\n\n }",
"long n = 0;",
"n",
"0",
"BufferedReader reader = null;",
"reader",
"null",
"try {\n reader = new BufferedReader(new InputStreamReader(in));\n String line = reader.readLine();\n n = Long.parseLong(line);\n } catch (IOException e) {\n throw new RuntimeException(e);\n } finally {\n if (reader != null) {\n try {\n reader.close();\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\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 if (reader != null) {\n try {\n reader.close();\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n }",
"if (reader != null) {\n try {\n reader.close();\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }",
"reader != null",
"reader",
"null",
"{\n try {\n reader.close();\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }",
"try {\n reader.close();\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 reader.close();\n }",
"reader.close()",
"reader.close",
"reader",
"{\n reader = new BufferedReader(new InputStreamReader(in));\n String line = reader.readLine();\n n = Long.parseLong(line);\n }",
"reader = new BufferedReader(new InputStreamReader(in))",
"reader",
"new BufferedReader(new InputStreamReader(in))",
"String line = reader.readLine();",
"line",
"reader.readLine()",
"reader.readLine",
"reader",
"n = Long.parseLong(line)",
"n",
"Long.parseLong(line)",
"Long.parseLong",
"Long",
"line",
"return n;",
"n",
"InputStream in",
"in"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
class Main {
public static void main(String[] args) {
long n = readLong(System.in);
System.out.println(n * n * n);
}
private static long readLong(InputStream in) {
long n = 0;
BufferedReader reader = null;
try {
reader = new BufferedReader(new InputStreamReader(in));
String line = reader.readLine();
n = Long.parseLong(line);
} catch (IOException e) {
throw new RuntimeException(e);
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
return n;
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
17,
38,
5,
13,
30,
4,
18,
13,
5,
13,
30,
4,
18,
13,
30,
0,
13,
4,
18,
13,
41,
13,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
13,
13,
17,
2,
2,
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
],
[
81,
11
],
[
81,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
14,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
21,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
32,
33
],
[
21,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
38,
39
],
[
14,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
42,
45
],
[
14,
46
],
[
46,
47
],
[
46,
48
],
[
48,
49
],
[
49,
50
],
[
48,
51
],
[
51,
52
],
[
51,
53
],
[
14,
54
],
[
54,
55
],
[
54,
56
],
[
56,
57
],
[
57,
58
],
[
56,
59
],
[
59,
60
],
[
59,
61
],
[
14,
62
],
[
62,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
62,
67
],
[
68,
68
],
[
68,
69
],
[
69,
70
],
[
69,
71
],
[
68,
72
],
[
68,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
73,
77
],
[
12,
78
],
[
78,
79
],
[
0,
80
],
[
80,
81
],
[
80,
82
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n\t\tString x = \"\";\n\t\ttry {\n\t\t\tx = in.readLine();\n\t\t} catch (NumberFormatException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tString[] ab = x.split(\" \");\n\n\t\tint a = Integer.parseInt(ab[0]);\n\t\tint b = Integer.parseInt(ab[1]);\n\t\t\n\t\tSystem.out.println((a * b) + \" \" + ((a + b) * 2));\n\t}\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\tpublic static void main(String[] args) {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n\t\tString x = \"\";\n\t\ttry {\n\t\t\tx = in.readLine();\n\t\t} catch (NumberFormatException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tString[] ab = x.split(\" \");\n\n\t\tint a = Integer.parseInt(ab[0]);\n\t\tint b = Integer.parseInt(ab[1]);\n\t\t\n\t\tSystem.out.println((a * b) + \" \" + ((a + b) * 2));\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n\t\tString x = \"\";\n\t\ttry {\n\t\t\tx = in.readLine();\n\t\t} catch (NumberFormatException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tString[] ab = x.split(\" \");\n\n\t\tint a = Integer.parseInt(ab[0]);\n\t\tint b = Integer.parseInt(ab[1]);\n\t\t\n\t\tSystem.out.println((a * b) + \" \" + ((a + b) * 2));\n\t}",
"main",
"{\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n\t\tString x = \"\";\n\t\ttry {\n\t\t\tx = in.readLine();\n\t\t} catch (NumberFormatException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tString[] ab = x.split(\" \");\n\n\t\tint a = Integer.parseInt(ab[0]);\n\t\tint b = Integer.parseInt(ab[1]);\n\t\t\n\t\tSystem.out.println((a * b) + \" \" + ((a + b) * 2));\n\t}",
"BufferedReader in = new BufferedReader(new InputStreamReader(System.in));",
"in",
"new BufferedReader(new InputStreamReader(System.in))",
"String x = \"\";",
"x",
"\"\"",
"try {\n\t\t\tx = in.readLine();\n\t\t} catch (NumberFormatException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}",
"catch (NumberFormatException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}",
"NumberFormatException e",
"{\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}",
"IOException e",
"{\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"{\n\t\t\tx = in.readLine();\n\t\t}",
"x = in.readLine()",
"x",
"in.readLine()",
"in.readLine",
"in",
"String[] ab = x.split(\" \");",
"ab",
"x.split(\" \")",
"x.split",
"x",
"\" \"",
"int a = Integer.parseInt(ab[0]);",
"a",
"Integer.parseInt(ab[0])",
"Integer.parseInt",
"Integer",
"ab[0]",
"ab",
"0",
"int b = Integer.parseInt(ab[1]);",
"b",
"Integer.parseInt(ab[1])",
"Integer.parseInt",
"Integer",
"ab[1]",
"ab",
"1",
"System.out.println((a * b) + \" \" + ((a + b) * 2))",
"System.out.println",
"System.out",
"System",
"System.out",
"(a * b) + \" \" + ((a + b) * 2)",
"(a * b) + \" \" + ((a + b) * 2)",
"(a * b)",
"a",
"b",
"\" \"",
"((a + b) * 2)",
"(a + b)",
"a",
"b",
"2",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n\t\tString x = \"\";\n\t\ttry {\n\t\t\tx = in.readLine();\n\t\t} catch (NumberFormatException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tString[] ab = x.split(\" \");\n\n\t\tint a = Integer.parseInt(ab[0]);\n\t\tint b = Integer.parseInt(ab[1]);\n\t\t\n\t\tSystem.out.println((a * b) + \" \" + ((a + b) * 2));\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n\t\tString x = \"\";\n\t\ttry {\n\t\t\tx = in.readLine();\n\t\t} catch (NumberFormatException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\tString[] ab = x.split(\" \");\n\n\t\tint a = Integer.parseInt(ab[0]);\n\t\tint b = Integer.parseInt(ab[1]);\n\t\t\n\t\tSystem.out.println((a * b) + \" \" + ((a + b) * 2));\n\t}\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String x = "";
try {
x = in.readLine();
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String[] ab = x.split(" ");
int a = Integer.parseInt(ab[0]);
int b = Integer.parseInt(ab[1]);
System.out.println((a * b) + " " + ((a + b) * 2));
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
2,
13,
13,
41,
13,
2,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
13,
17,
13,
12,
13,
30,
41,
13,
20,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
58,
5
],
[
58,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
29,
33
],
[
33,
34
],
[
33,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
42,
42
],
[
42,
43
],
[
42,
44
],
[
42,
45
],
[
58,
46
],
[
46,
47
],
[
46,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
48,
52
],
[
52,
53
],
[
53,
54
],
[
46,
55
],
[
55,
56
],
[
0,
57
],
[
57,
58
],
[
57,
59
]
] | [
"import java.util.Scanner;\npublic class Main{\n public void solve(){\n Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=a*b;\n int d=a*2+b*2;\n System.out.println(c+\" \"+d);\n \n }\n\n \n \n \n public static void main(String[]args){\n \n Main obj =new Main();\n obj.solve();\n \n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n public void solve(){\n Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=a*b;\n int d=a*2+b*2;\n System.out.println(c+\" \"+d);\n \n }\n\n \n \n \n public static void main(String[]args){\n \n Main obj =new Main();\n obj.solve();\n \n }\n}",
"Main",
"public void solve(){\n Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=a*b;\n int d=a*2+b*2;\n System.out.println(c+\" \"+d);\n \n }",
"solve",
"{\n Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=a*b;\n int d=a*2+b*2;\n System.out.println(c+\" \"+d);\n \n }",
"Scanner sc=new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a=sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b=sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c=a*b;",
"c",
"a*b",
"a",
"b",
"int d=a*2+b*2;",
"d",
"a*2+b*2",
"a*2",
"a",
"2",
"b*2",
"b",
"2",
"System.out.println(c+\" \"+d)",
"System.out.println",
"System.out",
"System",
"System.out",
"c+\" \"+d",
"c+\" \"+d",
"c",
"\" \"",
"d",
"public static void main(String[]args){\n \n Main obj =new Main();\n obj.solve();\n \n }",
"main",
"{\n \n Main obj =new Main();\n obj.solve();\n \n }",
"Main obj =new Main();",
"obj",
"new Main()",
"obj.solve()",
"obj.solve",
"obj",
"String[]args",
"args",
"public class Main{\n public void solve(){\n Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=a*b;\n int d=a*2+b*2;\n System.out.println(c+\" \"+d);\n \n }\n\n \n \n \n public static void main(String[]args){\n \n Main obj =new Main();\n obj.solve();\n \n }\n}",
"public class Main{\n public void solve(){\n Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=a*b;\n int d=a*2+b*2;\n System.out.println(c+\" \"+d);\n \n }\n\n \n \n \n public static void main(String[]args){\n \n Main obj =new Main();\n obj.solve();\n \n }\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public void solve(){
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
int c=a*b;
int d=a*2+b*2;
System.out.println(c+" "+d);
}
public static void main(String[]args){
Main obj =new Main();
obj.solve();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
13,
13,
17,
2,
2,
13,
17,
2,
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
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
24,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
30,
33
],
[
8,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
40,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
40,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
45,
49
],
[
49,
50
],
[
49,
51
],
[
6,
52
],
[
52,
53
]
] | [
"import java.util.Scanner;\nclass Main{\npublic static void main(String[] args)\n{\nScanner scan =new Scanner(System.in);\nString str1=scan.next();\nString str2=scan.next();\nint a=Integer.parseInt(str1);\nint b=Integer.parseInt(str2);\nSystem.out.println(a*b+\" \"+(a*2+b*2));\n}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\npublic static void main(String[] args)\n{\nScanner scan =new Scanner(System.in);\nString str1=scan.next();\nString str2=scan.next();\nint a=Integer.parseInt(str1);\nint b=Integer.parseInt(str2);\nSystem.out.println(a*b+\" \"+(a*2+b*2));\n}\n}",
"Main",
"public static void main(String[] args)\n{\nScanner scan =new Scanner(System.in);\nString str1=scan.next();\nString str2=scan.next();\nint a=Integer.parseInt(str1);\nint b=Integer.parseInt(str2);\nSystem.out.println(a*b+\" \"+(a*2+b*2));\n}",
"main",
"{\nScanner scan =new Scanner(System.in);\nString str1=scan.next();\nString str2=scan.next();\nint a=Integer.parseInt(str1);\nint b=Integer.parseInt(str2);\nSystem.out.println(a*b+\" \"+(a*2+b*2));\n}",
"Scanner scan =new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"String str1=scan.next();",
"str1",
"scan.next()",
"scan.next",
"scan",
"String str2=scan.next();",
"str2",
"scan.next()",
"scan.next",
"scan",
"int a=Integer.parseInt(str1);",
"a",
"Integer.parseInt(str1)",
"Integer.parseInt",
"Integer",
"str1",
"int b=Integer.parseInt(str2);",
"b",
"Integer.parseInt(str2)",
"Integer.parseInt",
"Integer",
"str2",
"System.out.println(a*b+\" \"+(a*2+b*2))",
"System.out.println",
"System.out",
"System",
"System.out",
"a*b+\" \"+(a*2+b*2)",
"a*b+\" \"+(a*2+b*2)",
"a*b",
"a",
"b",
"\" \"",
"(a*2+b*2)",
"a*2",
"a",
"2",
"b*2",
"b",
"2",
"String[] args",
"args"
] | import java.util.Scanner;
class Main{
public static void main(String[] args)
{
Scanner scan =new Scanner(System.in);
String str1=scan.next();
String str2=scan.next();
int a=Integer.parseInt(str1);
int b=Integer.parseInt(str2);
System.out.println(a*b+" "+(a*2+b*2));
}
} |
[
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,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
17,
2,
13,
13,
2,
2,
17,
13,
2,
17,
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
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
17,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
24,
25
],
[
17,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
17,
31
],
[
31,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
31,
36
],
[
31,
37
],
[
37,
38
],
[
37,
39
],
[
31,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
44,
45
],
[
44,
46
],
[
15,
47
],
[
47,
48
]
] | [
"import java.io.*;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.Scanner;\n\nclass Main {\n public static void main(String[] args) throws IOException {\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n System.out.printf(\"%d %d\\n\", a*b, 2*a+2*b);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"import java.util.ArrayList;",
"ArrayList",
"java.util",
"import java.util.Collections;",
"Collections",
"java.util",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main {\n public static void main(String[] args) throws IOException {\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n System.out.printf(\"%d %d\\n\", a*b, 2*a+2*b);\n }\n}",
"Main",
"public static void main(String[] args) throws IOException {\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n System.out.printf(\"%d %d\\n\", a*b, 2*a+2*b);\n }",
"main",
"{\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n System.out.printf(\"%d %d\\n\", a*b, 2*a+2*b);\n }",
"Scanner in = new Scanner(System.in);",
"in",
"new Scanner(System.in)",
"int a = in.nextInt();",
"a",
"in.nextInt()",
"in.nextInt",
"in",
"int b = in.nextInt();",
"b",
"in.nextInt()",
"in.nextInt",
"in",
"System.out.printf(\"%d %d\\n\", a*b, 2*a+2*b)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d %d\\n\"",
"a*b",
"a",
"b",
"2*a+2*b",
"2*a",
"2",
"a",
"2*b",
"2",
"b",
"String[] args",
"args"
] | import java.io.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
class Main {
public static void main(String[] args) throws IOException {
Scanner in = new Scanner(System.in);
int a = in.nextInt();
int b = in.nextInt();
System.out.printf("%d %d\n", a*b, 2*a+2*b);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
18,
13,
13,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
2,
13,
13,
17,
2,
2,
2,
13,
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
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
13,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
13,
18
],
[
9,
19
],
[
19,
20
],
[
20,
21
],
[
20,
22
],
[
19,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
28,
29
],
[
29,
30
],
[
19,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
33,
36
],
[
36,
37
],
[
37,
38
],
[
19,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
39,
44
],
[
45,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
45,
49
],
[
45,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
50,
56
],
[
6,
57
],
[
57,
58
]
] | [
"import java.util.*;\n\nclass Main\n{\n\tpublic static void main(String args[]) {\n\n\t\ttry {\n\n\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\tint a = Integer.parseInt(sc.next());\n\t\t\tint b = Integer.parseInt(sc.next());\n\n\n\n\t\t\tSystem.out.println((a*b) +\" \"+ (a+a+b+b));\n\t\t}\n\t\tcatch (Exception e) {\n\t\t\tSystem.out.println(e);\n\t\t}\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"class Main\n{\n\tpublic static void main(String args[]) {\n\n\t\ttry {\n\n\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\tint a = Integer.parseInt(sc.next());\n\t\t\tint b = Integer.parseInt(sc.next());\n\n\n\n\t\t\tSystem.out.println((a*b) +\" \"+ (a+a+b+b));\n\t\t}\n\t\tcatch (Exception e) {\n\t\t\tSystem.out.println(e);\n\t\t}\n\t}\n}",
"Main",
"public static void main(String args[]) {\n\n\t\ttry {\n\n\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\tint a = Integer.parseInt(sc.next());\n\t\t\tint b = Integer.parseInt(sc.next());\n\n\n\n\t\t\tSystem.out.println((a*b) +\" \"+ (a+a+b+b));\n\t\t}\n\t\tcatch (Exception e) {\n\t\t\tSystem.out.println(e);\n\t\t}\n\t}",
"main",
"{\n\n\t\ttry {\n\n\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\tint a = Integer.parseInt(sc.next());\n\t\t\tint b = Integer.parseInt(sc.next());\n\n\n\n\t\t\tSystem.out.println((a*b) +\" \"+ (a+a+b+b));\n\t\t}\n\t\tcatch (Exception e) {\n\t\t\tSystem.out.println(e);\n\t\t}\n\t}",
"try {\n\n\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\tint a = Integer.parseInt(sc.next());\n\t\t\tint b = Integer.parseInt(sc.next());\n\n\n\n\t\t\tSystem.out.println((a*b) +\" \"+ (a+a+b+b));\n\t\t}\n\t\tcatch (Exception e) {\n\t\t\tSystem.out.println(e);\n\t\t}",
"catch (Exception e) {\n\t\t\tSystem.out.println(e);\n\t\t}",
"Exception e",
"{\n\t\t\tSystem.out.println(e);\n\t\t}",
"System.out.println(e)",
"System.out.println",
"System.out",
"System",
"System.out",
"e",
"{\n\n\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\tint a = Integer.parseInt(sc.next());\n\t\t\tint b = Integer.parseInt(sc.next());\n\n\n\n\t\t\tSystem.out.println((a*b) +\" \"+ (a+a+b+b));\n\t\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = Integer.parseInt(sc.next());",
"a",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"int b = Integer.parseInt(sc.next());",
"b",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"System.out.println((a*b) +\" \"+ (a+a+b+b))",
"System.out.println",
"System.out",
"System",
"System.out",
"(a*b) +\" \"+ (a+a+b+b)",
"(a*b) +\" \"+ (a+a+b+b)",
"(a*b)",
"a",
"b",
"\" \"",
"(a+a+b+b)",
"b",
"a+a+b+b",
"a",
"a",
"b",
"b",
"String args[]",
"args"
] | import java.util.*;
class Main
{
public static void main(String args[]) {
try {
Scanner sc = new Scanner(System.in);
int a = Integer.parseInt(sc.next());
int b = Integer.parseInt(sc.next());
System.out.println((a*b) +" "+ (a+a+b+b));
}
catch (Exception e) {
System.out.println(e);
}
}
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.