submission_id
stringlengths
10
10
problem_id
stringlengths
6
6
language
stringclasses
3 values
code
stringlengths
1
522k
compiler_output
stringlengths
43
10.2k
s110874576
p00000
C++
class Main{ public static void main(String[] a){ for(int i =1; i<10; i++){ for(int j=1; j<10; j++){ System.out.println(i+"x"+j+"="+(i*j)); } } } }
a.cc:2:11: error: expected ':' before 'static' 2 | public static void main(String[] a){ | ^~~~~~~ | : a.cc:2:29: error: 'String' has not been declared 2 | public static void main(String[] a){ | ^~~~~~ a.cc:2:38: error: expected ',' or '...' before 'a' 2 | public static void main(String[] a){ | ^ a.cc:10:2: error: expected ';' after class definition 10 | } | ^ | ; a.cc: In static member function 'static void Main::main(int*)': a.cc:5:19: error: 'System' was not declared in this scope 5 | System.out.println(i+"x"+j+"="+(i*j)); | ^~~~~~ a.cc:5:45: error: invalid operands of types 'const char*' and 'const char [2]' to binary 'operator+' 5 | System.out.println(i+"x"+j+"="+(i*j)); | ~~~~~~~^~~~ | | | | | const char [2] | const char*
s085164746
p00000
C++
import java.lang.*; import java.io.*; class Main{ public static void main(String[] a){ for (int i = 1; i < 10; i++) { for(int j = 1; j < 10; j++) { System.out.println(i + "x" + j + "=" + (i * j)); } } } }
a.cc:1:1: error: 'import' does not name a type 1 | import java.lang.*; | ^~~~~~ a.cc:1:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:2:1: error: 'import' does not name a type 2 | import java.io.*; | ^~~~~~ a.cc:2:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:5:11: error: expected ':' before 'static' 5 | public static void main(String[] a){ | ^~~~~~~ | : a.cc:5:29: error: 'String' has not been declared 5 | public static void main(String[] a){ | ^~~~~~ a.cc:5:38: error: expected ',' or '...' before 'a' 5 | public static void main(String[] a){ | ^ a.cc:12:2: error: expected ';' after class definition 12 | } | ^ | ; a.cc: In static member function 'static void Main::main(int*)': a.cc:8:22: error: 'System' was not declared in this scope 8 | System.out.println(i + "x" + j + "=" + (i * j)); | ^~~~~~ a.cc:8:53: error: invalid operands of types 'const char*' and 'const char [2]' to binary 'operator+' 8 | System.out.println(i + "x" + j + "=" + (i * j)); | ~~~~~~~~~~~ ^ ~~~ | | | | | const char [2] | const char*
s164536627
p00000
C++
hawawa
a.cc:1:1: error: 'hawawa' does not name a type 1 | hawawa | ^~~~~~
s389723986
p00000
C++
#include<iostream> using namespace std; int main(){ for(int a=1;a<=9;a++){ for(int b=1;b<=9;b++){ int c=a*b; printf(a+"x"+b=c) } } return 0; }
a.cc: In function 'int main()': a.cc:8:19: error: lvalue required as left operand of assignment 8 | printf(a+"x"+b=c) | ~~~~~^~
s070375615
p00000
C++
#include<bits/stdc++.h> using namespace std; int main(){ for(int a=1;a<=9;a++){ for(int b=1;b<=9;b++){ int c=a*b; printf(a+"x"+b=c) } } return 0; }
a.cc: In function 'int main()': a.cc:8:19: error: lvalue required as left operand of assignment 8 | printf(a+"x"+b=c) | ~~~~~^~
s003591740
p00000
C++
#include<bits/stdc++.h> using namespace std; int main(){ for(int a=1;a<=9;a++){ for(int b=1;b<=9;b++){ int c=a*b; printf("%d\n",a+"x"+b=c) } } return 0; }
a.cc: In function 'int main()': a.cc:8:26: error: lvalue required as left operand of assignment 8 | printf("%d\n",a+"x"+b=c) | ~~~~~^~
s434850417
p00000
C++
package com.company; import java.io.IOException; public class Main { public static void main (String[] args) throws IOException { for (int i = 1; i < 10; i++){ for(int j=1;j < 10;j++){ System.out.println(i+"??"+j); } } } }
a.cc:1:1: error: 'package' does not name a type 1 | package com.company; | ^~~~~~~ a.cc:2:1: error: 'import' does not name a type 2 | import java.io.IOException; | ^~~~~~ a.cc:2:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:3:1: error: expected unqualified-id before 'public' 3 | public class Main { | ^~~~~~
s846435451
p00000
C++
import java.io.IOException; public class Main { public static void main (String[] a) throws IOException { for (int i = 1; i < 10; i++){ for(int j=1;j < 10;j++){ System.out.println(i+"x"+j+"="+(i*j)); } } } }
a.cc:1:1: error: 'import' does not name a type 1 | import java.io.IOException; | ^~~~~~ a.cc:1:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:2:1: error: expected unqualified-id before 'public' 2 | public class Main { | ^~~~~~
s822438059
p00000
C++
for x in range(1,10): for y in range(1,10): print(str(x) + "x" + str(y) + "=" + str(x*y))
a.cc:1:1: error: expected unqualified-id before 'for' 1 | for x in range(1,10): | ^~~
s595383634
p00000
C++
#include <stdio.h> int main(){ int i, j a; for(i = 1; i < 10; i++){ for(j = 1; j < 10; j++){ a = i * j; printf("%dx%d=%d\n", i, j, a); } } return 0; }
a.cc: In function 'int main()': a.cc:4:14: error: expected initializer before 'a' 4 | int i, j a; | ^ a.cc:6:13: error: 'j' was not declared in this scope 6 | for(j = 1; j < 10; j++){ | ^ a.cc:7:13: error: 'a' was not declared in this scope 7 | a = i * j; | ^
s376674280
p00000
C++
#include <stdio.h> int i, j; for (i=1; i<=9; i++) for (j=1; j<=9; j++) printf("%dx%d=%d\n",i, j, i*j);
a.cc:3:1: error: expected unqualified-id before 'for' 3 | for (i=1; i<=9; i++) | ^~~ a.cc:3:11: error: 'i' does not name a type 3 | for (i=1; i<=9; i++) | ^ a.cc:3:17: error: 'i' does not name a type 3 | for (i=1; i<=9; i++) | ^ a.cc:4:15: error: 'j' does not name a type 4 | for (j=1; j<=9; j++) | ^ a.cc:4:21: error: 'j' does not name a type 4 | for (j=1; j<=9; j++) | ^
s212386725
p00000
C++
#include <stdio.h> int i, j; printf("%dx%d=%d\n",i, j, i*j);
a.cc:3:7: error: expected constructor, destructor, or type conversion before '(' token 3 | printf("%dx%d=%d\n",i, j, i*j); | ^
s712813762
p00000
C++
#include <stdio.h> int i, j;
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o: in function `_start': (.text+0x17): undefined reference to `main' collect2: error: ld returned 1 exit status
s592209160
p00000
C++
#include <stdio.h>
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o: in function `_start': (.text+0x17): undefined reference to `main' collect2: error: ld returned 1 exit status
s524575045
p00000
C++
#include <stdio.h> void main() { for (int i=1; i<=9; i++) for (int j=1; j<=9; j++) printf("%dx%d=%d\n", i, j, i*j); }
a.cc:2:1: error: '::main' must return 'int' 2 | void main() | ^~~~
s446135716
p00000
C++
#include <stdio.h> void main() { int i, j; }
a.cc:2:1: error: '::main' must return 'int' 2 | void main() | ^~~~
s146614168
p00000
C++
#include <stdio.h> void main() { int i, j; return; }
a.cc:2:1: error: '::main' must return 'int' 2 | void main() | ^~~~ a.cc: In function 'int main()': a.cc:5:5: error: return-statement with no value, in function returning 'int' [-fpermissive] 5 | return; | ^~~~~~
s263982709
p00000
C++
#include<stdin.h> using namespace std; int main(){ for (int i=1; i<=9; c++){ for (int j=1; j<=9; j++){ printf("%dx%d=%d",i,j,i*j) } } return 0; }
a.cc:1:9: fatal error: stdin.h: No such file or directory 1 | #include<stdin.h> | ^~~~~~~~~ compilation terminated.
s599941817
p00000
C++
#include<iostream> int main(void){ int i=1,j=1 for(i;i<10;i++){ for(j=1;j<10;j++){ std::cout<<i<<"x"<<j<<"="<<i*j<<std::endl; }} return 0; }
a.cc: In function 'int main()': a.cc:4:1: error: expected ',' or ';' before 'for' 4 | for(i;i<10;i++){ | ^~~ a.cc:4:15: error: expected ';' before ')' token 4 | for(i;i<10;i++){ | ^ | ;
s046953027
p00000
C++
#include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #include<vector> #include<map> #include<queue> using namespace std; int c[400][35] { 1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,0,0,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,1,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,1,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,0,1,0,1,1,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,1,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,0,0,1,1,0,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,0,1,1,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,1,1,0,0,0,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,1,1,0,1,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,0,0,1,1,0,0,0,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,1,0,1,0,1,1,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,1,0,1,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,1,0,1,0,1,0,1,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,1,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,0,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,1,1,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, 1,1,0,1,1,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,1,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,1,0,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,1,0,1,0,1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,1,0,1,1,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,1,1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, 1,0,0,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, 1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, 1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,1,1,0,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,1,0,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,1,0,1,1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,1,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,1,0,0,0,0,1,0,0,1,1,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,1,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,0,1,1,0,0,0,1,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,1,1,1,1,0,1,0,1,1,0,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,0,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,0,1,0,1,0,1,0,1,1,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,1,1,0,1,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,1,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,0,1,1,1,1,1,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,0,1,1,0,1,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,1,1,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,1,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,1,1,1,1,1,0,0,0,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,1,0,0,0,0,1,0,0,1,1,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,0,0,1,0,0,1,0,1,1,1,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,1,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,1,1,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,0,1,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,1,0,0,1,0,0,1,1,1,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,0,0,1,1,1,1,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,1,1,0,1,1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,1,0,1,1,0,1,1,0,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,0,0,1,1,0,1,1,0,1,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,0,1,0,1,1,0,1,1,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,0,1,1,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,1,1,1,0,1,0,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,0,1,1,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,1,0,1,0,1,1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,0,1,0,1,1,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,1,0,1,1,0,1,0,1,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,1,0,1,1,1,1,1,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,1,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0, 1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, 1,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0, 1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0, 1,0,0,1,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, 1,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0, 1,0,1,1,0,1,1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,0,1,1,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,1,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,1,1,1,1,1,0,1,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,1,0,0,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,0,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,0,1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,0,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,1,1,1,0,1,1,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,1,1,1,0,1,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, }; int main() { int a,b; scanf("%d%d",&a,&b); printf("%d\n") return 0;,a+b }
a.cc: In function 'int main()': a.cc:418:19: error: expected ';' before 'return' 418 | printf("%d\n") | ^ | ; 419 | return 0;,a+b | ~~~~~~ a.cc:419:14: error: expected primary-expression before ',' token 419 | return 0;,a+b | ^
s268222447
p00000
C++
fn main(){ let n=10; for i in 1..n{ for j in 1..n{ println!("{}x{}={}",i,j,i*j); } } }
a.cc:3:12: error: too many decimal points in number 3 | for i in 1..n{ | ^~~~ a.cc:4:14: error: too many decimal points in number 4 | for j in 1..n{ | ^~~~ a.cc:1:1: error: 'fn' does not name a type 1 | fn main(){ | ^~
s040370771
p00000
C++
fn main(){ let n=10; for i in 1..n{ for j in 1..n{ println!("{}x{}={}",i,j,i*j); } } }
a.cc:3:12: error: too many decimal points in number 3 | for i in 1..n{ | ^~~~ a.cc:4:14: error: too many decimal points in number 4 | for j in 1..n{ | ^~~~ a.cc:1:1: error: 'fn' does not name a type 1 | fn main(){ | ^~
s518800623
p00000
C++
fn main(){ for i in 1..10{ for j in 1..10{ println!("{}x{}={}",i,j,i*j); } } }
a.cc:3:12: error: too many decimal points in number 3 | for i in 1..10{ | ^~~~~ a.cc:4:14: error: too many decimal points in number 4 | for j in 1..10{ | ^~~~~ a.cc:1:1: error: 'fn' does not name a type 1 | fn main(){ | ^~
s833730531
p00000
C++
for i in range(1,10): for j in range(1,10): print(str(i) + "x" + str(j) + "=" + str(i * j))
a.cc:1:1: error: expected unqualified-id before 'for' 1 | for i in range(1,10): | ^~~
s549900502
p00000
C++
#include <stdio> using namespace std; int main(void) { for (int i = 0; i <= 9; i++) { for ( int j = 0; j <= 9; j++) { cout << i << 'x' << j << '=' << i * j << endl; } } return 0; }
a.cc:1:10: fatal error: stdio: No such file or directory 1 | #include <stdio> | ^~~~~~~ compilation terminated.
s266714754
p00000
C++
#include<stdio.h> int i,j;main(){for(i=1;i<=9;i++)for(j=1;j<=9;j++)printf("%dx%d=%d\n",i,j,i*j);}
a.cc:1:19: warning: extra tokens at end of #include directive 1 | #include<stdio.h> int i,j;main(){for(i=1;i<=9;i++)for(j=1;j<=9;j++)printf("%dx%d=%d\n",i,j,i*j);} | ^~~ /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o: in function `_start': (.text+0x17): undefined reference to `main' collect2: error: ld returned 1 exit status
s443564857
p00000
C++
#include <stdio.h> int main(void) { int i, j; for(i = 1; i < 10; ++i) { for(j = 1; j < 10; ++j) { printf("%dx%d=%d\n", i, j, i * j); } } return 0;
a.cc: In function 'int main()': a.cc:10:12: error: expected '}' at end of input 10 | return 0; | ^ a.cc:3:16: note: to match this '{' 3 | int main(void) { | ^
s687202991
p00000
C++
#include <iostream> int main() { std:cout << "Hello World" << "\n"; }
a.cc: In function 'int main()': a.cc:4:7: error: 'cout' was not declared in this scope; did you mean 'std::cout'? 4 | std:cout << "Hello World" << "\n"; | ^~~~ | std::cout In file included from a.cc:1: /usr/include/c++/14/iostream:63:18: note: 'std::cout' declared here 63 | extern ostream cout; ///< Linked to standard output | ^~~~
s525471084
p00000
C++
i = 0 for a in range(10): for b in range(10): i = a * b print(a,"*" ,b ,"=" ,i)
a.cc:1:1: error: 'i' does not name a type 1 | i = 0 | ^
s753644018
p00000
C++
#include<iostream> using namespace std; int main(){ for(int i=1;i<10;i++;){ for(int j=1; j<10;j++){ cout<<i<<"+"<<j<<"="<<i+j<<endl; } } return 0; }
a.cc: In function 'int main()': a.cc:5:25: error: expected ')' before ';' token 5 | for(int i=1;i<10;i++;){ | ~ ^ | ) a.cc:5:26: error: expected primary-expression before ')' token 5 | for(int i=1;i<10;i++;){ | ^
s037606486
p00000
C++
#include<stdio.h> int main() { int n,p; { for(p=1;p<=9;p++) { for(n=1;n<10;n++) { printf("%dx%d=%d\n",p,n,p*n); } } return 0; }
a.cc: In function 'int main()': a.cc:14:2: error: expected '}' at end of input 14 | } | ^ a.cc:3:1: note: to match this '{' 3 | { | ^
s152301916
p00000
C++
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o: in function `_start': (.text+0x17): undefined reference to `main' collect2: error: ld returned 1 exit status
s620610857
p00000
C++
#include <iostream> using namespace std; int main(){ for(int i = 1; i < 10; i++){ for(int i = 1; i < 10; i++){ cout << i << "x" << j << "=" << i*j << endl; } } return 0; }
a.cc: In function 'int main()': a.cc:7:27: error: 'j' was not declared in this scope 7 | cout << i << "x" << j << "=" << i*j << endl; | ^
s216707191
p00000
C++
for i in range(1,10): for j in range(1,10): print(i,"x", j,"=", i*j)
a.cc:1:1: error: expected unqualified-id before 'for' 1 | for i in range(1,10): | ^~~
s724518025
p00000
C++
#include<iostream> using namespace std; int main(){ int i,j; for(i=1;i<10;i++){ for(j=1;j<10;j++){ cout<<i<<*<<j<<"="<<i*j<<endl;  } } return 0; }
a.cc:8:1: error: extended character   is not valid in an identifier 8 |  } | ^ a.cc: In function 'int main()': a.cc:7:14: error: expected primary-expression before '<<' token 7 | cout<<i<<*<<j<<"="<<i*j<<endl; | ^~ a.cc:8:1: error: '\U00003000' was not declared in this scope 8 |  } | ^~
s635093137
p00000
C++
for i in range(1,10): for j in range(1,10): print(i,'x',j,'=',i*j)
a.cc:1:1: error: expected unqualified-id before 'for' 1 | for i in range(1,10): | ^~~
s064012021
p00000
C++
#include<cstdio> int main() { for(int x=1;x<10;x++) { for(int y=1;y<10;y++) printf("%dX%d=%d\n",a*b); } return 0; }
a.cc: In function 'int main()': a.cc:7:21: error: 'a' was not declared in this scope 7 | printf("%dX%d=%d\n",a*b); | ^ a.cc:7:23: error: 'b' was not declared in this scope 7 | printf("%dX%d=%d\n",a*b); | ^
s786607580
p00000
C++
#include<cstdio> int main() { for(int x=1;x<10;x++) { for(int y=1;y<10;y++) printf("%d × %d = %d\n",a*b); } return 0; }
a.cc: In function 'int main()': a.cc:7:25: error: 'a' was not declared in this scope 7 | printf("%d × %d = %d\n",a*b); | ^ a.cc:7:27: error: 'b' was not declared in this scope 7 | printf("%d × %d = %d\n",a*b); | ^
s683982634
p00000
C++
#include<stdio.h> int main(){ int i,j; for(i=1;i<=10;i++){ for(j=1;j<=10;j++){ printf("%dx%d=%d\n",i,j,i*j) } } return 0; }
a.cc: In function 'int main()': a.cc:11:29: error: expected ';' before '}' token 11 | printf("%dx%d=%d\n",i,j,i*j) | ^ | ; 12 | } | ~
s832487236
p00000
C++
#include <stdio.h> void main() { int i,j; for(i=1;i<10;i++) for(j=1;j<10;j++) printf("%d*%d=%d\n",i,j,i*j); }
a.cc:2:1: error: '::main' must return 'int' 2 | void main() | ^~~~
s095673127
p00000
C++
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o: in function `_start': (.text+0x17): undefined reference to `main' collect2: error: ld returned 1 exit status
s639433982
p00000
C++
#include <iostream> using namespace std; int main() { for(int i=1; i<10; i++){ for(int J=0; j<0; j++){ printf("%dx%d=%d", i, j, i*j); } } return 0; }
a.cc: In function 'int main()': a.cc:6:28: error: 'j' was not declared in this scope 6 | for(int J=0; j<0; j++){ | ^
s463271932
p00000
C++
#include <iostream> using namespace std; int main() { for(int i=1; i<10; i++){ for(int J=0; j<10; j++){ printf("%dx%d=%d", i, j, i*j); } } return 0; }
a.cc: In function 'int main()': a.cc:6:28: error: 'j' was not declared in this scope 6 | for(int J=0; j<10; j++){ | ^
s883895986
p00000
C++
#include <iostream> using namespace std; int main() { for(int i=1; i<10; i++){ for(int J=1; j<10; j++){ printf("%dx%d=%d", i, j, i*j); } } return 0; }
a.cc: In function 'int main()': a.cc:6:28: error: 'j' was not declared in this scope 6 | for(int J=1; j<10; j++){ | ^
s244074480
p00000
C++
#include <iostream> using namespace std; int main() { for(int i=1; i<10; i++){ for(int J=1; j<10; j++){ printf("%dx%d=%d\n", i, j, i*j); } } return 0; }
a.cc: In function 'int main()': a.cc:6:28: error: 'j' was not declared in this scope 6 | for(int J=1; j<10; j++){ | ^
s948548510
p00000
C++
class Main { public static void main(String[] args) { for(int i=1; i<=9; i++ ){ for(int j=1; j <=9;j++){ System.out.println(i+" x "+j+" = "+ i*j); } } } }
a.cc:2:15: error: expected ':' before 'static' 2 | public static void main(String[] args) { | ^~~~~~~ | : a.cc:2:33: error: 'String' has not been declared 2 | public static void main(String[] args) { | ^~~~~~ a.cc:2:42: error: expected ',' or '...' before 'args' 2 | public static void main(String[] args) { | ^~~~ a.cc:10:2: error: expected ';' after class definition 10 | } | ^ | ; a.cc: In static member function 'static void Main::main(int*)': a.cc:5:33: error: 'System' was not declared in this scope 5 | System.out.println(i+" x "+j+" = "+ i*j); | ^~~~~~ a.cc:5:61: error: invalid operands of types 'const char*' and 'const char [4]' to binary 'operator+' 5 | System.out.println(i+" x "+j+" = "+ i*j); | ~~~~~~~~~^~~~~~ | | | | | const char [4] | const char*
s267266362
p00000
C++
#include<stdio.h> int main(void) { int a,b,c; scanf("%d %d",&a,&b); c=a*b; printf("%d\n"c); return 0; }
a.cc: In function 'int main()': a.cc:7:16: error: unable to find string literal operator 'operator""c' with 'const char [4]', 'long unsigned int' arguments 7 | printf("%d\n"c); | ^~~~~~~
s286143270
p00000
C++
#include<stdio.h> int main(void) { int a,b,c; scanf("%d %d",&a,&b); c=axb; printf("%d\n",c); return 0; }
a.cc: In function 'int main()': a.cc:6:11: error: 'axb' was not declared in this scope 6 | c=axb; | ^~~
s579051925
p00000
C++
#include<stdio.h> int main(void) { int a,b,c,x; scanf("%d %d",&a,&b); c=axb; printf("%d\n",c); return 0; }
a.cc: In function 'int main()': a.cc:6:11: error: 'axb' was not declared in this scope 6 | c=axb; | ^~~
s975830222
p00000
C++
#include<stdio.h> int main(void) { int a,b,c,; scanf("%d %d",&a,&b); c=axb; printf("%d\n",c); return 0; }
a.cc: In function 'int main()': a.cc:4:19: error: expected unqualified-id before ';' token 4 | int a,b,c,; | ^ a.cc:6:11: error: 'axb' was not declared in this scope 6 | c=axb; | ^~~
s123080828
p00000
C++
#include<stdio.h> int main(void) { int a,b,c,; scanf("%d %d",&a,&b); x=*; c=axb; printf("%d\n",c); return 0; }
a.cc: In function 'int main()': a.cc:4:19: error: expected unqualified-id before ';' token 4 | int a,b,c,; | ^ a.cc:7:9: error: 'x' was not declared in this scope 7 | x=*; | ^ a.cc:7:12: error: expected primary-expression before ';' token 7 | x=*; | ^ a.cc:8:11: error: 'axb' was not declared in this scope 8 | c=axb; | ^~~
s007781320
p00000
C++
#include<stdio.h> int main(void) { int a,b,c,; scanf("%d %d",&a,&b); x='*'; c=axb; printf("%d\n",c); return 0; }
a.cc: In function 'int main()': a.cc:4:19: error: expected unqualified-id before ';' token 4 | int a,b,c,; | ^ a.cc:7:9: error: 'x' was not declared in this scope 7 | x='*'; | ^ a.cc:8:11: error: 'axb' was not declared in this scope 8 | c=axb; | ^~~
s504132805
p00000
C++
#include<stdio.h> int main(void) { int a,b,c,x; scanf("%d %d",&a,&b); x='*'; c=axb; printf("%d\n",c); return 0; }
a.cc: In function 'int main()': a.cc:8:11: error: 'axb' was not declared in this scope 8 | c=axb; | ^~~
s982438601
p00000
C++
#include<stdio.h> int main(void) { int a,b,c; scanf("%d %d",&a,&b); x='*'; c=axb; printf("%d\n",c); return 0; }
a.cc: In function 'int main()': a.cc:7:9: error: 'x' was not declared in this scope 7 | x='*'; | ^ a.cc:8:11: error: 'axb' was not declared in this scope 8 | c=axb; | ^~~
s927442643
p00000
C++
#include<stdio.h> int main(void) { int a,b,c; scanf("%d %d",&a,&b); c=axb; printf("%d\n",c); return 0; }
a.cc: In function 'int main()': a.cc:6:11: error: 'axb' was not declared in this scope 6 | c=axb; | ^~~
s964781577
p00000
C++
j;main(i){for(;++j%10||(j=i++<9);)printf("%dx%d=%d\n",i,j,i*j);exit(0);}
a.cc:1:1: error: 'j' does not name a type 1 | j;main(i){for(;++j%10||(j=i++<9);)printf("%dx%d=%d\n",i,j,i*j);exit(0);} | ^ a.cc:1:7: error: expected constructor, destructor, or type conversion before '(' token 1 | j;main(i){for(;++j%10||(j=i++<9);)printf("%dx%d=%d\n",i,j,i*j);exit(0);} | ^
s797518161
p00000
C++
#include<stdio.h> i=1,j=1;main(){for(;i<10;i++)for(;j<10;j++)printf("%dx%d=%d\n",i,j,i+j);}
a.cc:2:1: error: 'i' does not name a type 2 | i=1,j=1;main(){for(;i<10;i++)for(;j<10;j++)printf("%dx%d=%d\n",i,j,i+j);} | ^ a.cc:2:9: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 2 | i=1,j=1;main(){for(;i<10;i++)for(;j<10;j++)printf("%dx%d=%d\n",i,j,i+j);} | ^~~~ a.cc: In function 'int main()': a.cc:2:21: error: 'i' was not declared in this scope 2 | i=1,j=1;main(){for(;i<10;i++)for(;j<10;j++)printf("%dx%d=%d\n",i,j,i+j);} | ^ a.cc:2:35: error: 'j' was not declared in this scope 2 | i=1,j=1;main(){for(;i<10;i++)for(;j<10;j++)printf("%dx%d=%d\n",i,j,i+j);} | ^
s469678350
p00000
C++
#include <stdio.h> main(){ int a,b,; a=1,b=1; while(a<10){ while(b<10){ printf("%d*%d=%d",a,b,a*b); b++; } b=1; a++; } }
a.cc:2:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 2 | main(){ | ^~~~ a.cc: In function 'int main()': a.cc:3:11: error: expected unqualified-id before ';' token 3 | int a,b,; | ^
s059264120
p00000
C++
#include <iostream> using name space std; int main(){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ cout<<i<<"x"<<j<<"="<<i*j<<endl; } } return 0; }
a.cc:2:7: error: expected nested-name-specifier before 'name' 2 | using name space std; | ^~~~ a.cc: In function 'int main()': a.cc:7:7: error: 'cout' was not declared in this scope; did you mean 'std::cout'? 7 | cout<<i<<"x"<<j<<"="<<i*j<<endl; | ^~~~ | std::cout In file included from a.cc:1: /usr/include/c++/14/iostream:63:18: note: 'std::cout' declared here 63 | extern ostream cout; ///< Linked to standard output | ^~~~ a.cc:7:34: error: 'endl' was not declared in this scope; did you mean 'std::endl'? 7 | cout<<i<<"x"<<j<<"="<<i*j<<endl; | ^~~~ | std::endl In file included from /usr/include/c++/14/iostream:41: /usr/include/c++/14/ostream:744:5: note: 'std::endl' declared here 744 | endl(basic_ostream<_CharT, _Traits>& __os) | ^~~~
s095837158
p00000
C++
import java.util.*; import java.lang.*; import java.math.*; class main { void run() { for (int i=1;i<10;i++) { for (int j=1;j<10;j++) System.out.println( i + "x" + j + "+" + i*j); return; } public static void main(String[] args) { new main().run(); } }
a.cc:1:1: error: 'import' does not name a type 1 | import java.util.*; | ^~~~~~ a.cc:1:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:2:1: error: 'import' does not name a type 2 | import java.lang.*; | ^~~~~~ a.cc:2:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:3:1: error: 'import' does not name a type 3 | import java.math.*; | ^~~~~~ a.cc:3:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:17:2: error: expected '}' at end of input 17 | } | ^ a.cc:5:12: note: to match this '{' 5 | class main { | ^ a.cc: In member function 'void main::run()': a.cc:10:17: error: 'System' was not declared in this scope 10 | System.out.println( i + "x" + j + "+" + i*j); | ^~~~~~ a.cc:10:49: error: invalid operands of types 'const char*' and 'const char [2]' to binary 'operator+' 10 | System.out.println( i + "x" + j + "+" + i*j); | ~~~~~~~~~~~ ^ ~~~ | | | | | const char [2] | const char* a.cc:14:5: error: expected primary-expression before 'public' 14 | public static void main(String[] args) { | ^~~~~~ a.cc: At global scope: a.cc:17:2: error: expected unqualified-id at end of input 17 | } | ^
s075905757
p00000
C++
import java.util.*; import java.lang.*; import java.math.*; class main { void run() { for (int i=1;i<10;i++) { for (int j=1;j<10;j++) System.out.println( i + "x" + j + "+" + i*j); } return; } public static void main( String[] args) { new main().run(); } }
a.cc:1:1: error: 'import' does not name a type 1 | import java.util.*; | ^~~~~~ a.cc:1:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:2:1: error: 'import' does not name a type 2 | import java.lang.*; | ^~~~~~ a.cc:2:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:3:1: error: 'import' does not name a type 3 | import java.math.*; | ^~~~~~ a.cc:3:1: note: C++20 'import' only available with '-fmodules-ts' a.cc:15:11: error: expected ':' before 'static' 15 | public static void main( String[] args) { | ^~~~~~~ | : a.cc:15:30: error: 'String' has not been declared 15 | public static void main( String[] args) { | ^~~~~~ a.cc:15:39: error: expected ',' or '...' before 'args' 15 | public static void main( String[] args) { | ^~~~ a.cc:15:19: error: return type specification for constructor invalid 15 | public static void main( String[] args) { | ^~~~ a.cc:15:12: error: constructor cannot be static member function 15 | public static void main( String[] args) { | ^~~~~~ a.cc:18:2: error: expected ';' after class definition 18 | } | ^ | ; a.cc: In member function 'void main::run()': a.cc:10:17: error: 'System' was not declared in this scope 10 | System.out.println( i + "x" + j + "+" + i*j); | ^~~~~~ a.cc:10:49: error: invalid operands of types 'const char*' and 'const char [2]' to binary 'operator+' 10 | System.out.println( i + "x" + j + "+" + i*j); | ~~~~~~~~~~~ ^ ~~~ | | | | | const char [2] | const char* a.cc: In constructor 'main::main(int*)': a.cc:16:17: error: no matching function for call to 'main::main()' 16 | new main().run(); | ^ a.cc:15:24: note: candidate: 'main::main(int*)' 15 | public static void main( String[] args) { | ^~~~ a.cc:15:24: note: candidate expects 1 argument, 0 provided a.cc:5:7: note: candidate: 'constexpr main::main(const main&)' 5 | class main { | ^~~~ a.cc:5:7: note: candidate expects 1 argument, 0 provided a.cc:5:7: note: candidate: 'constexpr main::main(main&&)' a.cc:5:7: note: candidate expects 1 argument, 0 provided
s648341764
p00000
C++
#include<stdio.h> main(i,j){for(i=1;i<10;i++){for(j=1;j<10;j++){printf("%dx%d=%d\n",i,j,i*j);}}}
a.cc:2:5: error: expected constructor, destructor, or type conversion before '(' token 2 | main(i,j){for(i=1;i<10;i++){for(j=1;j<10;j++){printf("%dx%d=%d\n",i,j,i*j);}}} | ^
s658515224
p00000
C++
#include<stdio.h> main(i,j){ for(i=1;i<10;i++){for(j=1;j<10;j++){printf("%dx%d=%d\n",i,j,i*j);}}}
a.cc:2:5: error: expected constructor, destructor, or type conversion before '(' token 2 | main(i,j){ | ^
s352375613
p00000
C++
#include<stdio.h>main(int i,int j){for(i=1;i<10;i++){for(j=1;j<10;j++){printf("%dx%d=%d\n",i,j,i*j);}}}
a.cc:1:22: warning: extra tokens at end of #include directive 1 | #include<stdio.h>main(int i,int j){for(i=1;i<10;i++){for(j=1;j<10;j++){printf("%dx%d=%d\n",i,j,i*j);}}} | ^ a.cc:1:9: fatal error: stdio.h>mai: No such file or directory 1 | #include<stdio.h>main(int i,int j){for(i=1;i<10;i++){for(j=1;j<10;j++){printf("%dx%d=%d\n",i,j,i*j);}}} | ^~~~~~~~~~~~~ compilation terminated.
s614305682
p00000
C++
#include<stdio.h> int main(i){for(i=9;i<90;i++)printf("%dx%d=%d\n",i/9,i%9+1,i/9*(i%9+1));}
a.cc:2:5: error: cannot declare '::main' to be a global variable 2 | int main(i){for(i=9;i<90;i++)printf("%dx%d=%d\n",i/9,i%9+1,i/9*(i%9+1));} | ^~~~ a.cc:2:10: error: 'i' was not declared in this scope 2 | int main(i){for(i=9;i<90;i++)printf("%dx%d=%d\n",i/9,i%9+1,i/9*(i%9+1));} | ^
s303897185
p00000
C++
i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
a.cc:1:1: error: 'i' does not name a type 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^ a.cc:1:7: error: expected constructor, destructor, or type conversion before '(' token 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^
s733629352
p00000
C++
#include<stdio> main(){int i=1,j;for(i;i<10;i++){for(j=1;j<10;j++){printf("%dx%d=%d\n",i,j,i*j);}}return 0;}
a.cc:1:9: fatal error: stdio: No such file or directory 1 | #include<stdio> | ^~~~~~~ compilation terminated.
s795589230
p00000
C++
int i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
a.cc:1:11: error: expected constructor, destructor, or type conversion before '(' token 1 | int i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^
s036685184
p00000
C++
main(){printf("%d",1);}
a.cc:1:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 1 | main(){printf("%d",1);} | ^~~~ a.cc: In function 'int main()': a.cc:1:8: error: 'printf' was not declared in this scope 1 | main(){printf("%d",1);} | ^~~~~~ a.cc:1:1: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' +++ |+#include <cstdio> 1 | main(){printf("%d",1);}
s948191266
p00000
C++
int i,j;main(){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
a.cc:1:9: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 1 | int i,j;main(){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^~~~ a.cc: In function 'int main()': a.cc:1:43: error: 'printf' was not declared in this scope 1 | int i,j;main(){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^~~~~~ a.cc:1:1: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' +++ |+#include <cstdio> 1 | int i,j;main(){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
s466917704
p00000
C++
#include<stdio.h> i,main(){}
a.cc:2:1: error: 'i' does not name a type 2 | i,main(){} | ^
s143439152
p00000
C++
#include<stdio.h> main(i){}
a.cc:2:5: error: expected constructor, destructor, or type conversion before '(' token 2 | main(i){} | ^
s465410404
p00000
C++
int i,j;main(){for(;++i<=9;){for(j=1;j<=9;){printf("%dx%d=%d\n",i,j++,i*j);}}}
a.cc:1:9: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 1 | int i,j;main(){for(;++i<=9;){for(j=1;j<=9;){printf("%dx%d=%d\n",i,j++,i*j);}}} | ^~~~ a.cc: In function 'int main()': a.cc:1:45: error: 'printf' was not declared in this scope 1 | int i,j;main(){for(;++i<=9;){for(j=1;j<=9;){printf("%dx%d=%d\n",i,j++,i*j);}}} | ^~~~~~ a.cc:1:1: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' +++ |+#include <cstdio> 1 | int i,j;main(){for(;++i<=9;){for(j=1;j<=9;){printf("%dx%d=%d\n",i,j++,i*j);}}}
s822582801
p00000
C++
#include<stdio.h> int i,main(){}
a.cc:2:13: error: a function-definition is not allowed here before '{' token 2 | int i,main(){} | ^
s843145443
p00000
C++
#include<stdio> main(){for(int i=1;i<=9;i++)for(int j=1;j<=9;j++)printf("%dx%d=%d\n",i,j,i*j);}
a.cc:1:9: fatal error: stdio: No such file or directory 1 | #include<stdio> | ^~~~~~~ compilation terminated.
s187314460
p00000
C++
#include<stdio.h> int main(){int i,j=1;while(j<=9){for(i=1;i<10;i++){printf("%dx%d=%d\n",j,i,i*j);}j++;}
a.cc: In function 'int main()': a.cc:2:87: error: expected '}' at end of input 2 | int main(){int i,j=1;while(j<=9){for(i=1;i<10;i++){printf("%dx%d=%d\n",j,i,i*j);}j++;} | ~ ^
s865101354
p00000
C++
#include<stdio.h> main(){int i,j=1;while(j<=9){for(i=1;i<10;i++){printf("%dx%d=%d\n",j,i,i*j);}j++;}
a.cc:2:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 2 | main(){int i,j=1;while(j<=9){for(i=1;i<10;i++){printf("%dx%d=%d\n",j,i,i*j);}j++;} | ^~~~ a.cc: In function 'int main()': a.cc:2:83: error: expected '}' at end of input 2 | main(){int i,j=1;while(j<=9){for(i=1;i<10;i++){printf("%dx%d=%d\n",j,i,i*j);}j++;} | ~ ^
s997663367
p00000
C++
int i,j;main(){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
a.cc:1:9: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 1 | int i,j;main(){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^~~~ a.cc: In function 'int main()': a.cc:1:43: error: 'printf' was not declared in this scope 1 | int i,j;main(){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^~~~~~ a.cc:1:1: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' +++ |+#include <cstdio> 1 | int i,j;main(){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
s863131235
p00000
C++
#include<stdio.h> main(i,j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
a.cc:2:5: error: expected constructor, destructor, or type conversion before '(' token 2 | main(i,j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^
s745078725
p00000
C++
#include<stdio.h> main(i,j){i=j=1;for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
a.cc:2:5: error: expected constructor, destructor, or type conversion before '(' token 2 | main(i,j){i=j=1;for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^
s177550683
p00000
C++
#include<stdio.h> main(i){int j;for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
a.cc:2:5: error: expected constructor, destructor, or type conversion before '(' token 2 | main(i){int j;for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^
s400128367
p00000
C++
main(){int i=0,j;for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
a.cc:1:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 1 | main(){int i=0,j;for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^~~~ a.cc: In function 'int main()': a.cc:1:45: error: 'printf' was not declared in this scope 1 | main(){int i=0,j;for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^~~~~~ a.cc:1:1: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' +++ |+#include <cstdio> 1 | main(){int i=0,j;for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
s504878034
p00000
C++
i;main(j){ for(;i++<9;) for(j=0;j++<9;) printf("%dx%d=%d\n",i,j,i*j); exit(0); }
a.cc:1:1: error: 'i' does not name a type 1 | i;main(j){ | ^ a.cc:1:7: error: expected constructor, destructor, or type conversion before '(' token 1 | i;main(j){ | ^
s408173831
p00000
C++
main(i){i=8;while(i++<89)printf("%dx%d=%d\n",i/9,i%9+1,i/9*(i%9+1));}
a.cc:1:5: error: expected constructor, destructor, or type conversion before '(' token 1 | main(i){i=8;while(i++<89)printf("%dx%d=%d\n",i/9,i%9+1,i/9*(i%9+1));} | ^
s671449567
p00000
C++
#include<stdio.h> i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);}
a.cc:2:1: error: 'i' does not name a type 2 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^ a.cc:2:7: error: expected constructor, destructor, or type conversion before '(' token 2 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);} | ^
s890304086
p00000
C++
i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit(0);}
a.cc:1:1: error: 'i' does not name a type 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit(0);} | ^ a.cc:1:7: error: expected constructor, destructor, or type conversion before '(' token 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit(0);} | ^
s940431295
p00000
C++
i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit(0);}
a.cc:1:1: error: 'i' does not name a type 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit(0);} | ^ a.cc:1:7: error: expected constructor, destructor, or type conversion before '(' token 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit(0);} | ^
s317774580
p00000
C++
i;main(j){for(;i!=10;j++){printf("%dx%d=%d\n",i,j,i*j);if(j==9){i++;j=0;}}}
a.cc:1:1: error: 'i' does not name a type 1 | i;main(j){for(;i!=10;j++){printf("%dx%d=%d\n",i,j,i*j);if(j==9){i++;j=0;}}} | ^ a.cc:1:7: error: expected constructor, destructor, or type conversion before '(' token 1 | i;main(j){for(;i!=10;j++){printf("%dx%d=%d\n",i,j,i*j);if(j==9){i++;j=0;}}} | ^
s203911897
p00000
C++
i;main(){for(;++i<=9;)printf("%dx%d=%d\n",i,10-i,i*10-i);exit(0);}
a.cc:1:1: error: 'i' does not name a type 1 | i;main(){for(;++i<=9;)printf("%dx%d=%d\n",i,10-i,i*10-i);exit(0);} | ^ a.cc:1:3: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 1 | i;main(){for(;++i<=9;)printf("%dx%d=%d\n",i,10-i,i*10-i);exit(0);} | ^~~~ a.cc: In function 'int main()': a.cc:1:17: error: 'i' was not declared in this scope 1 | i;main(){for(;++i<=9;)printf("%dx%d=%d\n",i,10-i,i*10-i);exit(0);} | ^ a.cc:1:23: error: 'printf' was not declared in this scope 1 | i;main(){for(;++i<=9;)printf("%dx%d=%d\n",i,10-i,i*10-i);exit(0);} | ^~~~~~ a.cc:1:1: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' +++ |+#include <cstdio> 1 | i;main(){for(;++i<=9;)printf("%dx%d=%d\n",i,10-i,i*10-i);exit(0);} a.cc:1:58: error: 'exit' was not declared in this scope 1 | i;main(){for(;++i<=9;)printf("%dx%d=%d\n",i,10-i,i*10-i);exit(0);} | ^~~~ a.cc:1:1: note: 'exit' is defined in header '<cstdlib>'; this is probably fixable by adding '#include <cstdlib>' +++ |+#include <cstdlib> 1 | i;main(){for(;++i<=9;)printf("%dx%d=%d\n",i,10-i,i*10-i);exit(0);}
s923622780
p00000
C++
i;main(){for(;i<82;i++){printf("%dx%d=%d\n",i/10+1,i/9,i);}
a.cc:1:1: error: 'i' does not name a type 1 | i;main(){for(;i<82;i++){printf("%dx%d=%d\n",i/10+1,i/9,i);} | ^ a.cc:1:3: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 1 | i;main(){for(;i<82;i++){printf("%dx%d=%d\n",i/10+1,i/9,i);} | ^~~~ a.cc: In function 'int main()': a.cc:1:15: error: 'i' was not declared in this scope 1 | i;main(){for(;i<82;i++){printf("%dx%d=%d\n",i/10+1,i/9,i);} | ^ a.cc:1:25: error: 'printf' was not declared in this scope 1 | i;main(){for(;i<82;i++){printf("%dx%d=%d\n",i/10+1,i/9,i);} | ^~~~~~ a.cc:1:1: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' +++ |+#include <cstdio> 1 | i;main(){for(;i<82;i++){printf("%dx%d=%d\n",i/10+1,i/9,i);} a.cc:1:60: error: expected '}' at end of input 1 | i;main(){for(;i<82;i++){printf("%dx%d=%d\n",i/10+1,i/9,i);} | ~ ^
s214250376
p00000
C++
#include <iostream> using namespace std; int main(void) { for (i=1;i<=9;i++) { for (j=1;j<=9;j++) { cout << i << "x" << j << "=" << i*j << endl; } } return 0; }
a.cc: In function 'int main()': a.cc:6:6: error: 'i' was not declared in this scope 6 | for (i=1;i<=9;i++) | ^ a.cc:8:6: error: 'j' was not declared in this scope 8 | for (j=1;j<=9;j++) | ^
s460503582
p00000
C++
#include <iostream> s,e;main(){while(e=e%9,s+=++e<2,s<10)std::cout<<s<<'x'<<e<<'='<<s*e<<'\n';}
a.cc:2:1: error: 's' does not name a type 2 | s,e;main(){while(e=e%9,s+=++e<2,s<10)std::cout<<s<<'x'<<e<<'='<<s*e<<'\n';} | ^ a.cc:2:5: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 2 | s,e;main(){while(e=e%9,s+=++e<2,s<10)std::cout<<s<<'x'<<e<<'='<<s*e<<'\n';} | ^~~~ a.cc: In function 'int main()': a.cc:2:18: error: 'e' was not declared in this scope 2 | s,e;main(){while(e=e%9,s+=++e<2,s<10)std::cout<<s<<'x'<<e<<'='<<s*e<<'\n';} | ^ a.cc:2:24: error: 's' was not declared in this scope 2 | s,e;main(){while(e=e%9,s+=++e<2,s<10)std::cout<<s<<'x'<<e<<'='<<s*e<<'\n';} | ^
s682880574
p00000
C++
i,j;main(){while(++i<10)for(j=1;j<10;printf("%dx%d=%d\n",i,j,i*j++));}
a.cc:1:1: error: 'i' does not name a type 1 | i,j;main(){while(++i<10)for(j=1;j<10;printf("%dx%d=%d\n",i,j,i*j++));} | ^ a.cc:1:5: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 1 | i,j;main(){while(++i<10)for(j=1;j<10;printf("%dx%d=%d\n",i,j,i*j++));} | ^~~~ a.cc: In function 'int main()': a.cc:1:20: error: 'i' was not declared in this scope 1 | i,j;main(){while(++i<10)for(j=1;j<10;printf("%dx%d=%d\n",i,j,i*j++));} | ^ a.cc:1:29: error: 'j' was not declared in this scope 1 | i,j;main(){while(++i<10)for(j=1;j<10;printf("%dx%d=%d\n",i,j,i*j++));} | ^ a.cc:1:38: error: 'printf' was not declared in this scope 1 | i,j;main(){while(++i<10)for(j=1;j<10;printf("%dx%d=%d\n",i,j,i*j++));} | ^~~~~~ a.cc:1:1: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' +++ |+#include <cstdio> 1 | i,j;main(){while(++i<10)for(j=1;j<10;printf("%dx%d=%d\n",i,j,i*j++));}
s259928545
p00000
C++
#include <stdio.h> int main(void) {
a.cc: In function 'int main()': a.cc:4:2: error: expected '}' at end of input 4 | { | ~^
s835696189
p00000
C++
#include <iostream> using namespace std; void main(){ for(int i =1;i<=9;i++){ for(int j=1;j<=9;j++){ cout <<i<<"x"<<j<<"="<<i*j<<"\n"; } } }
a.cc:3:1: error: '::main' must return 'int' 3 | void main(){ | ^~~~
s129963702
p00000
C++
int main(){ for(int i=1;i++;i<10){ for(int j=1;j++;j<10){ cout << i << "x" << j << "=" << i*j << endl; } } }
a.cc: In function 'int main()': a.cc:4:4: error: 'cout' was not declared in this scope 4 | cout << i << "x" << j << "=" << i*j << endl; | ^~~~ a.cc:4:43: error: 'endl' was not declared in this scope 4 | cout << i << "x" << j << "=" << i*j << endl; | ^~~~
s063985018
p00000
C++
include <iostream> using namespace std; void main(){ for(int i=1;i++;i<10){ for(int j=1;j++;j<10){ cout << i << "x" << j << "=" << i*j << endl; } } }
a.cc:1:1: error: 'include' does not name a type 1 | include <iostream> | ^~~~~~~ a.cc:4:1: error: '::main' must return 'int' 4 | void main(){ | ^~~~ a.cc: In function 'int main()': a.cc:7:4: error: 'cout' was not declared in this scope 7 | cout << i << "x" << j << "=" << i*j << endl; | ^~~~ a.cc:7:43: error: 'endl' was not declared in this scope 7 | cout << i << "x" << j << "=" << i*j << endl; | ^~~~
s078067002
p00000
C++
#include <iostream> using namespace std; void main(){ for(int i=1;i++;i<10){ for(int j=1;j++;j<10){ cout << i << "x" << j << "=" << i*j << endl; } } }
a.cc:4:1: error: '::main' must return 'int' 4 | void main(){ | ^~~~
s669940508
p00000
C++
#include <iostream> using namespace std; void main(){ for(int i=1;i<10;i++){ for(int j=1;j<10;j++){ cout << i << "x" << j << "=" << i*j << endl; } } // return 0; }
a.cc:4:1: error: '::main' must return 'int' 4 | void main(){ | ^~~~
s490608104
p00000
C++
#import<algo.h> main(){for(int i=0,j,k;j=i/9+1,k=i%9+1,81-i;i++)cout<<j<<"x"<<k<<"="<<j*k<<endl;}
a.cc:1:2: warning: #import is a deprecated GCC extension [-Wdeprecated] 1 | #import<algo.h> | ^~~~~~ a.cc:1:8: fatal error: algo.h: No such file or directory 1 | #import<algo.h> | ^~~~~~~~ compilation terminated.