submission_id
stringlengths
10
10
problem_id
stringlengths
6
6
language
stringclasses
3 values
code
stringlengths
1
522k
compiler_output
stringlengths
43
10.2k
s659901575
p00000
C
#include<stdio.h> int main(){ int i,height[10]={0}; int top[3]={0}; for(i=0;i<10;i++){ scanf("%d",&height[i]); if(top[0]<height[i])top[0]=height[i]; else if(top[1]<hegith[i])top[1]=height[i]; else if(top[2]<hegith[i])top[2]=height[i]; } for(i=0;i<3;i++)printf("%d",top[i]); return 0; }
main.c: In function 'main': main.c:9:24: error: 'hegith' undeclared (first use in this function); did you mean 'height'? 9 | else if(top[1]<hegith[i])top[1]=height[i]; | ^~~~~~ | height main.c:9:24: note: each undeclared identifier is reported only once for each function it appears in
s757133085
p00000
C
#include <stdio.h> int main(void){ int i,j; for(I=1;i<=9;i++){ for(j=1;j<=9;j++){ printf("%d*%d=%d",i,j,i*j); } } return 0; }
main.c: In function 'main': main.c:5:21: error: 'I' undeclared (first use in this function) 5 | for(I=1;i<=9;i++){ | ^ main.c:5:21: note: each undeclared identifier is reported only once for each function it appears in
s715270282
p00000
C
#include <stdio.h> int main(void){ // Here your code ! 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; } #include <stdio.h> int main(void){ // Here your code ! 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; }
main.c:12:5: error: redefinition of 'main' 12 | int main(void){ | ^~~~ main.c:2:5: note: previous definition of 'main' with type 'int(void)' 2 | int main(void){ | ^~~~
s182214502
p00000
C
#include<stdio.h> int main(){ int a, b; for(a = 1; a < 10; a++){ for(b = 1; b < 10; b++){ printf("%d"&"x"&"%d"&"="&"%d", a, b,a*b); } } return 0; }
main.c: In function 'main': main.c:7:16: error: invalid operands to binary & (have 'char *' and 'char *') 7 | printf("%d"&"x"&"%d"&"="&"%d", a, b,a*b); | ~~~~^ | | | | | char * | char *
s651195967
p00000
C
#include<stdio.h> int main(){ int a, b; for(a = 1; a < 10; a++){ for(b = 1; b < 10; b++){ printf("%d"+"x"+"%d"+"="+"%d\n", a, b,a*b); } } return 0; }
main.c: In function 'main': main.c:7:16: error: invalid operands to binary + (have 'char *' and 'char *') 7 | printf("%d"+"x"+"%d"+"="+"%d\n", a, b,a*b); | ~~~~^ | | | | | char * | char *
s798650953
p00000
C
#include <stdio.h> int main(void) { int i,j; for (i = 1;i < 10;i++){ for (j = 0;j < 10:j++){ printf("%dx%d=%d\n",i,j,i*j); } } return(0); }
main.c: In function 'main': main.c:8:34: error: expected ';' before ':' token 8 | for (j = 0;j < 10:j++){ | ^ | ;
s228092518
p00000
C
#include <stdio.h> int main(void) { int i,n; fot(i=1;i<10;i++){ for(n=1;n<10;n++){ printf("%dx%d=%d",i,n,i*n ); } } return 0; }
main.c: In function 'main': main.c:5:5: error: implicit declaration of function 'fot' [-Wimplicit-function-declaration] 5 | fot(i=1;i<10;i++){ | ^~~ main.c:5:12: error: expected ')' before ';' token 5 | fot(i=1;i<10;i++){ | ~ ^ | ) main.c:5:22: error: expected ';' before '{' token 5 | fot(i=1;i<10;i++){ | ^ | ;
s989482867
p00000
C
#include<stdio.h> int main(){ int i,j; for(i=0; i < 9; i++){ for(j=0; j < 9, j++){ printf("%dx%d=%d", i, j, i*j) } } return 0; }
main.c: In function 'main': main.c:6:36: error: expected ';' before ')' token 6 | for(j=0; j < 9, j++){ | ^ | ; main.c:7:54: error: expected ';' before '}' token 7 | printf("%dx%d=%d", i, j, i*j) | ^ | ; 8 | } | ~
s749785259
p00000
C
#include<stdio.h> int main(){ int i,j; for(i=0; i < 9; i++){ for(j=0; j < 9, j++){ printf("%dx%d=%d", i, j, i*j); } } return 0; }
main.c: In function 'main': main.c:6:36: error: expected ';' before ')' token 6 | for(j=0; j < 9, j++){ | ^ | ;
s566415586
p00000
C
#include<stdio.h> int main(void) { int a,b; for(a = 1 ; a < 10 ; a++){ for(b = 1 ; b < 10 ; b++{ printf("%d x %d = %d\n",a,b,a*b); } } return 0; }
main.c: In function 'main': main.c:8:41: error: expected ')' before '{' token 8 | for(b = 1 ; b < 10 ; b++{ | ~ ^ | ) main.c:11:9: error: expected expression before '}' token 11 | } | ^
s170856950
p00000
C
#include<stdio.h> int main(){ int ii = 0; int ij = 0; int iAns = 0; for(ii=1; ii<10; ii++){ for(ij=1; ij<10 ij++){ iAns = ii * ij; printf("%dx%d=%d" ,ii ,ij ,iAns); ij++; } ii++; } return 0; }
main.c: In function 'main': main.c:10:20: error: expected ';' before 'ij' 10 | for(ij=1; ij<10 ij++){ | ^~~ | ;
s177698758
p00000
C
#include<stdio.h> #include<stidlib.j> int main(){ int total = 0; for(int i = 1; i <=9; i++){ for(int j = 1; j <= 9; j++){ total = i * j; printf("%dx%d=%d", i, j, total); } } return 0; }
main.c:2:9: fatal error: stidlib.j: No such file or directory 2 | #include<stidlib.j> | ^~~~~~~~~~~ compilation terminated.
s921860144
p00000
C
#include<stdio.h> #include<stidlib.h> int main(){ int total = 0; for(int i = 1; i <=9; i++){ for(int j = 1; j <= 9; j++){ total = i * j; printf("%dx%d=%d", i, j, total); } } return 0; }
main.c:2:9: fatal error: stidlib.h: No such file or directory 2 | #include<stidlib.h> | ^~~~~~~~~~~ compilation terminated.
s675548833
p00000
C
#include<stdio.h> int main() { int i,j; for(i=0;i<=9;i++) for(j=0;j<=9;j++) printf("%dx%d=%d\n",i,n,i*n); return 0; }
main.c: In function 'main': main.c:7:27: error: 'n' undeclared (first use in this function) 7 | printf("%dx%d=%d\n",i,n,i*n); | ^ main.c:7:27: note: each undeclared identifier is reported only once for each function it appears in
s840857506
p00000
C
#include<stdio.h> int main() { int i,j; for(i=0;i<=9;i++) for(j=0;j<=9;j++) printf("%dx%d=%d\n",i,n,i*n); return 0; }
main.c: In function 'main': main.c:7:27: error: 'n' undeclared (first use in this function) 7 | printf("%dx%d=%d\n",i,n,i*n); | ^ main.c:7:27: note: each undeclared identifier is reported only once for each function it appears in
s542800833
p00000
C
#include<stdio.h> int main() { int i,j; for(i=0;i<=9;i++) for(j=0;j<=9;j++) printf("%dx%d=%d\n",i,n,i*n); return 0; }
main.c: In function 'main': main.c:7:27: error: 'n' undeclared (first use in this function) 7 | printf("%dx%d=%d\n",i,n,i*n); | ^ main.c:7:27: note: each undeclared identifier is reported only once for each function it appears in
s458367101
p00000
C
#include<stdio.h> int main() { int i.j; for(i=1;i<=9;i++) for(j=1;j<=9;j++) printf("%dX%d=%d",i,j,i*j); return 0; }
main.c: In function 'main': main.c:4:8: error: expected '=', ',', ';', 'asm' or '__attribute__' before '.' token 4 | int i.j; | ^ main.c:4:8: error: expected expression before '.' token main.c:5:7: error: 'i' undeclared (first use in this function) 5 | for(i=1;i<=9;i++) | ^ main.c:5:7: note: each undeclared identifier is reported only once for each function it appears in main.c:6:7: error: 'j' undeclared (first use in this function) 6 | for(j=1;j<=9;j++) | ^
s305100728
p00000
C
//QQ #include<stdio.h> int main(){ int a,b; for (a=1,a<10,a++){ for(b=1,b<10,b++){ printf("%dx%d=%d\n",a,b,a*b);}} return 0; }
main.c: In function 'main': main.c:5:18: error: expected ';' before ')' token 5 | for (a=1,a<10,a++){ | ^ | ; main.c:5:18: error: expected expression before ')' token main.c:6:21: error: expected ';' before ')' token 6 | for(b=1,b<10,b++){ | ^ | ; main.c:6:21: error: expected expression before ')' token
s091869384
p00000
C
#include<stdio.h> int main(){ int x,y,ans,i; x=0; z=0; while (1) { y=0; if (ans==81) { break; } x=x+1; for (i = 0; i <9; i++) { y=y+1; ans=x*y; printf("%d*%d=%d\n",x,y,ans); } } return 0; }
main.c: In function 'main': main.c:5:3: error: 'z' undeclared (first use in this function) 5 | z=0; | ^ main.c:5:3: note: each undeclared identifier is reported only once for each function it appears in
s293591943
p00000
C
#include<stdio.h> int main(){ int x,y,ans,i; x=0; z=0; while (1) { y=0; if (ans==81) { break; } x=x+1; for (i = 0; i <9; i++) { y=y+1; ans=x*y; printf("%dx%d=%d\n",x,y,ans); } } return 0; }
main.c: In function 'main': main.c:5:3: error: 'z' undeclared (first use in this function) 5 | z=0; | ^ main.c:5:3: note: each undeclared identifier is reported only once for each function it appears in
s924284754
p00000
C
#include <stdio.h> int main(){ int i,j; for(i=1;i<<10;i++){ for(j=1;j<<10;j++){ a = i * j; printf("%d*%d=%d",i,j,a); } } return 0; }
main.c: In function 'main': main.c:8:13: error: 'a' undeclared (first use in this function) 8 | a = i * j; | ^ main.c:8:13: note: each undeclared identifier is reported only once for each function it appears in
s521528395
p00000
C
#include <stdio.h> int main(){ int i,j; for(i=1;i<<10;i++){ for(j=1;j<<10;j++){ printf("%d*%d=",i,j); a = i * j; printf("%d\n",a); } } return 0; }
main.c: In function 'main': main.c:9:13: error: 'a' undeclared (first use in this function) 9 | a = i * j; | ^ main.c:9:13: note: each undeclared identifier is reported only once for each function it appears in
s402922835
p00000
C
#include<stdio.h> int main(){ int ans,i,j; for(i=1; i<10; i++){ for(j=1; j<10; j++){ ans = i*j; printf("%d x %d = %d\n",i,j,ans); return 0; }
main.c: In function 'main': main.c:15:1: error: expected declaration or statement at end of input 15 | } | ^ main.c:15:1: error: expected declaration or statement at end of input
s627773712
p00000
C
#include<stdio.h> int 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); } return 0; }
main.c:1:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token 1 | #include<stdio.h> | ^
s977225834
p00000
C
#include<stdio.h> int main(){ int j,k; for(j=1;j<10;j++){ for(k=1;k<10;k++){ printf("%dx%d=%d\n",j,k,j*k) } } return 0; }
main.c: In function 'main': main.c:8:29: error: expected ';' before '}' token 8 | printf("%dx%d=%d\n",j,k,j*k) | ^ | ; 9 | } | ~
s658638683
p00000
C
#include<stdio.h> int main(){ int i=0; printf("%nx%n=%n\n", i,i,i*i) return 0; }
main.c: In function 'main': main.c:5:34: error: expected ';' before 'return' 5 | printf("%nx%n=%n\n", i,i,i*i) | ^ | ; 6 | return 0; | ~~~~~~
s079820384
p00000
C
#include<stdio.h> int main(){ int i=0; printf("%n \bx%n=%n\n", i,i,i*i) return 0; }
main.c: In function 'main': main.c:5:37: error: expected ';' before 'return' 5 | printf("%n \bx%n=%n\n", i,i,i*i) | ^ | ; 6 | return 0; | ~~~~~~
s772395270
p00000
C
object Main { def main(args: Array[String]): Unit = { for (i <- 1 to 9; j <- 1 to 9) println(i + "x" + j + "=" + i * j) } }
main.c:1:1: error: unknown type name 'object' 1 | object Main { | ^~~~~~ main.c:1:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token 1 | object Main { | ^
s914881003
p00000
C
#include<stdio.h> int main(void){ int i; for(i=1;i<10;i++){ printf("%dx%d=%d\n",i,i,i*i) } return 0; }
main.c: In function 'main': main.c:9:32: error: expected ';' before '}' token 9 | printf("%dx%d=%d\n",i,i,i*i) | ^ | ; 10 | } | ~
s001029193
p00000
C
#include<stdio.h> int main(){ int i; for(i=1;i<10;i++){ printf("%dx%d=%d",i,i,i*i); return 0; }
main.c: In function 'main': main.c:15:1: error: expected declaration or statement at end of input 15 | } | ^
s041112194
p00000
C
object Main { def main(args: Array[String]): Unit = { for (i <- 1 to 9; j <- 1 to 9) println(i + "x" + j + "=" + i * j) } }
main.c:1:1: error: unknown type name 'object' 1 | object Main { | ^~~~~~ main.c:1:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token 1 | object Main { | ^
s910917979
p00000
C
object Main { def main(args: Array[String]): Unit = { for (i <- 1 to 9; j <- 1 to 9) println(i + "x" + j + "=" + i * j) } }
main.c:1:1: error: unknown type name 'object' 1 | object Main { | ^~~~~~ main.c:1:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token 1 | object Main { | ^
s501944772
p00000
C
object Main { def main(args: Array[String]): Unit = { for (i <- 1 to 9; j <- 1 to 9) println(i + "x" + j + "=" + i * j) } }
main.c:1:1: error: unknown type name 'object' 1 | object Main { | ^~~~~~ main.c:1:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token 1 | object Main { | ^
s934425765
p00000
C
object Main { def main(args: Array[String]): Unit = { for (i <- 1 to 9; j <- 1 to 9) println(i + "x" + j + "=" + i * j) } }
main.c:1:1: error: unknown type name 'object' 1 | object Main { | ^~~~~~ main.c:1:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token 1 | object Main { | ^
s336604985
p00000
C
#include<stdio.h> int main(){ int i,j; for(i=0;i<10;i++){ for(j=0;j<10;j++) printf("%dx%d=%d\n",i,j,i*j) } } retun 0; }
main.c: In function 'main': main.c:9:31: error: expected ';' before '}' token 9 | printf("%dx%d=%d\n",i,j,i*j) | ^ | ; 10 | } | ~ main.c: At top level: main.c:13:7: error: expected '=', ',', ';', 'asm' or '__attribute__' before numeric constant 13 | retun 0; | ^ main.c:14:1: error: expected identifier or '(' before '}' token 14 | } | ^
s678318447
p00000
C
int n = 10; for (int i = 1; i < n; i++) { for (int j = 1; j < n; j++ ) { printf("%d*%d=%d\n", i, j, i*j); } }
main.c:2:9: error: expected identifier or '(' before 'for' 2 | for (int i = 1; i < n; i++) { | ^~~ main.c:2:27: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token 2 | for (int i = 1; i < n; i++) { | ^ main.c:2:33: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 2 | for (int i = 1; i < n; i++) { | ^~
s624424039
p00000
C
int main(void) { int i, j; while(i = 1; i < 10; i++){ while(j = 1; j < 10; j++){ printf("%dx%d=%d", i, j, i*j); if ((i != 9)&&(j != 9)){printf("\n");} } } return 0; }
main.c: In function 'main': main.c:4:12: error: expected ')' before ';' token 4 | while(i = 1; i < 10; i++){ | ~ ^ | ) main.c:5:12: error: expected ')' before ';' token 5 | while(j = 1; j < 10; j++){ | ~ ^ | ) main.c:6:1: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 6 | printf("%dx%d=%d", i, j, i*j); | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | int main(void) main.c:6:1: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 6 | printf("%dx%d=%d", i, j, i*j); | ^~~~~~ main.c:6:1: note: include '<stdio.h>' or provide a declaration of 'printf'
s011010521
p00000
C
int main(void) { int i, j; while (i = 1; i < 10; i++) { while (j = 1; j < 10; j++) { printf("%dx%d=%d", i, j, i*j); if ((i != 9)&&(j != 9)){printf("\n");} } } return 0; }
main.c: In function 'main': main.c:4:17: error: expected ')' before ';' token 4 | while (i = 1; i < 10; i++) { | ~ ^ | ) main.c:5:21: error: expected ')' before ';' token 5 | while (j = 1; j < 10; j++) { | ~ ^ | ) main.c:6:13: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 6 | printf("%dx%d=%d", i, j, i*j); | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | int main(void) main.c:6:13: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 6 | printf("%dx%d=%d", i, j, i*j); | ^~~~~~ main.c:6:13: note: include '<stdio.h>' or provide a declaration of 'printf'
s152349406
p00000
C
#include<stdio.h> int main(void){ int i;j; for(i=1;i<=9;i++){ for(j=1;j<=9;j++){ printf("%dx%d=%d\n",i,j,i*j); } } return(0); }
main.c: In function 'main': main.c:3:9: error: 'j' undeclared (first use in this function) 3 | int i;j; | ^ main.c:3:9: note: each undeclared identifier is reported only once for each function it appears in
s464617415
p00000
C
#include<stdio.h> main(){ int a, b, c; for(a = 1; a < 10; a++){ for(b = 1; b < 10; b++){ printf("%dx%d=%d\n", a, b, a * b) } } }
main.c:3:1: error: return type defaults to 'int' [-Wimplicit-int] 3 | main(){ | ^~~~ main.c: In function 'main': main.c:7:58: error: expected ';' before '}' token 7 | printf("%dx%d=%d\n", a, b, a * b) | ^ | ; 8 | } | ~
s327374377
p00000
C
#include<stdio.h> typedef S4 int #define START_NUM (1) #define END_NUM (9) int main(){ S4 s4_t_i; S4 s4_t_j; S4 s4_t_result; for(s4_t_i = (S4)START_NUM; s4_t_i < (S4)END_NUM; s4_t_i++) { for(s4_t_j = (S4)START_NUM; s4_t_j < (S4)END_NUM; s4_t_j++) { s4_t_result = s4_t_i * s4_t_j; printf("%dx%d=%d\n", s4_t_i, s4_t_j, s4_t_result); } } return 0; }
main.c:3:11: error: expected ';' before 'int' 3 | typedef S4 int | ^~~~ | ; main.c:8:1: error: two or more data types in declaration specifiers 8 | int main(){ | ^~~ main.c: In function 'main': main.c:9:9: error: unknown type name 'S4' 9 | S4 s4_t_i; | ^~ main.c:10:9: error: unknown type name 'S4' 10 | S4 s4_t_j; | ^~ main.c:11:9: error: unknown type name 'S4' 11 | S4 s4_t_result; | ^~ main.c:12:23: error: 'S4' undeclared (first use in this function) 12 | for(s4_t_i = (S4)START_NUM; s4_t_i < (S4)END_NUM; s4_t_i++) | ^~ main.c:12:23: note: each undeclared identifier is reported only once for each function it appears in
s790513419
p00000
C
#include<stdio.h> typedef int S4 #define START_NUM (1) #define END_NUM (9) S4 main(){ S4 s4_t_i; S4 s4_t_j; S4 s4_t_result; for(s4_t_i = (S4)START_NUM; s4_t_i < (S4)END_NUM; s4_t_i++) { for(s4_t_j = (S4)START_NUM; s4_t_j < (S4)END_NUM; s4_t_j++) { s4_t_result = s4_t_i * s4_t_j; printf("%dx%d=%d\n", s4_t_i, s4_t_j, s4_t_result); } } return 0; }
main.c:8:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'S4' 8 | S4 main(){ | ^~ main.c:8:1: error: unknown type name 'S4'
s873121778
p00000
C
#include<stdio.h> typedef int S4 #define START_NUM (1) #define END_NUM (9) S4 main(){ S4 s4_t_i; S4 s4_t_j; S4 s4_t_result; for(s4_t_i = (S4)START_NUM; s4_t_i < (S4)END_NUM; s4_t_i++) { for(s4_t_j = (S4)START_NUM; s4_t_j < (S4)END_NUM; s4_t_j++) { s4_t_result = s4_t_i * s4_t_j; printf("%dx%d=%d\n", s4_t_i, s4_t_j, s4_t_result); } } return 0; }
main.c:8:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'S4' 8 | S4 main(){ | ^~ main.c:8:1: error: unknown type name 'S4'
s307454552
p00000
C
Select Code #include<stdio.h> int main() { int a,b; for(a=1;a<=9;a++) { for(b=1;b<=9;b++) printf("%dX%d =%d\n",a,b,a*b); } return 0; }
main.c:1:1: error: unknown type name 'Select' 1 | Select Code | ^~~~~~ main.c:1:12: error: expected ';' before 'typedef' 1 | Select Code | ^ | ;
s576773167
p00000
C
#include<stdio.h> int main() { int a,b; for(a=1;a<=9;a++) { for(b=1;b<=9;b++) { printf("%d*%d=%d\n",a,b,a*b); } return 0; }
main.c: In function 'main': main.c:13:1: error: expected declaration or statement at end of input 13 | } | ^
s131857088
p00000
C
#include<stdio.h> int main(){ int i,j; for(i=1;i<=9;i++){ for(j=1:j<=9;j++){ printf("%dx%d=%d\n",i,j,i*j); } } return 0; }
main.c: In function 'main': main.c:6:24: error: expected ';' before ':' token 6 | for(j=1:j<=9;j++){ | ^ | ; main.c:6:33: error: expected ';' before ')' token 6 | for(j=1:j<=9;j++){ | ^ | ;
s891316886
p00000
C
#include<stdio.h> void multi(int* p, int n); int num[9] = {1,2,3,4,5,6,7,8,9} int main() { multi(num, 9); return 0; } void multi(int* p, int n) { int i = 0, j = 0; for(;i<n;i++) { for(;j<n;j++) printf("%dx%d=%d", p[i], p[j], p[i]*p[j]); } }
main.c:4:1: error: expected ',' or ';' before 'int' 4 | int main() | ^~~
s415845733
p00000
C
#include<stdio.h> int main(){ int i, j; for(i=1; i<=9i++) { for(j=1; j<=9;j++) { printf("%dx%d=%d\n", i, j, i*j); } } return 0; }
main.c: In function 'main': main.c:5:19: error: lvalue required as increment operand 5 | for(i=1; i<=9i++) | ^~ main.c:5:21: error: expected ';' before ')' token 5 | for(i=1; i<=9i++) | ^ | ;
s050447001
p00000
C
#include<stdio.h> int main() { int a,b; for(a=1; a<=9; a++) { for(b=1; b<=9; b++) } printf("%dX%d=%d\n",a,b,a*b); } } return 0; }
main.c: In function 'main': main.c:8:1: error: expected expression before '}' token 8 | } | ^ main.c: At top level: main.c:11:1: error: expected identifier or '(' before '}' token 11 | } | ^ main.c:12:1: error: expected identifier or '(' before 'return' 12 | return 0; | ^~~~~~ main.c:13:1: error: expected identifier or '(' before '}' token 13 | } | ^
s448134283
p00000
C
for (int i=1; i<=9; i++) for (int j=1; j<=9; j++) print("%dx%d=%d\n",i, j, i*j);
main.c:1:1: error: expected identifier or '(' before 'for' 1 | for (int i=1; i<=9; i++) | ^~~ main.c:1:16: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 1 | for (int i=1; i<=9; i++) | ^~ main.c:1:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 1 | for (int i=1; i<=9; i++) | ^~ main.c:2:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 2 | for (int j=1; j<=9; j++) | ^~ main.c:2:26: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 2 | for (int j=1; j<=9; j++) | ^~
s632546995
p00000
C
#include <stdio.h> for (int i=1; i<=9; i++) for (int j=1; j<=9; j++) print("%dx%d=%d\n",i, j, i*j);
main.c:2:1: error: expected identifier or '(' before 'for' 2 | for (int i=1; i<=9; i++) | ^~~ main.c:2:16: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 2 | for (int i=1; i<=9; i++) | ^~ main.c:2:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 2 | for (int i=1; i<=9; i++) | ^~ main.c:3:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 3 | for (int j=1; j<=9; j++) | ^~ main.c:3:26: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 3 | for (int j=1; j<=9; j++) | ^~
s178855940
p00000
C
for (int i=1; i<=9; i++) for (int j=1; j<=9; j++) printf("%dx%d=%d\n",i, j, i*j);
main.c:1:1: error: expected identifier or '(' before 'for' 1 | for (int i=1; i<=9; i++) | ^~~ main.c:1:16: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 1 | for (int i=1; i<=9; i++) | ^~ main.c:1:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 1 | for (int i=1; i<=9; i++) | ^~ main.c:2:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 2 | for (int j=1; j<=9; j++) | ^~ main.c:2:26: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 2 | for (int j=1; j<=9; j++) | ^~
s083138195
p00000
C
#include <stdio.h> for (int i=1; i<=9; i++) for (int j=1; j<=9; j++) printf("%dx%d=%d\n",i, j, i*j);
main.c:2:1: error: expected identifier or '(' before 'for' 2 | for (int i=1; i<=9; i++) | ^~~ main.c:2:16: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 2 | for (int i=1; i<=9; i++) | ^~ main.c:2:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 2 | for (int i=1; i<=9; i++) | ^~ main.c:3:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 3 | for (int j=1; j<=9; j++) | ^~ main.c:3:26: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 3 | for (int j=1; j<=9; j++) | ^~
s720031798
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);
main.c:3:1: error: expected identifier or '(' before 'for' 3 | for (i=1; i<=9; i++) | ^~~ main.c:3:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 3 | for (i=1; i<=9; i++) | ^~ main.c:3:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 3 | for (i=1; i<=9; i++) | ^~ main.c:4:16: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<=' token 4 | for (j=1; j<=9; j++) | ^~ main.c:4:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before '++' token 4 | for (j=1; j<=9; j++) | ^~
s939468429
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
s420702057
p00000
C
GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY GGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRGBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRYBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRGBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRYBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRGBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBY RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGG GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB GGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRGBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRYBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRGBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRYBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRGB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRB GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYGGGG GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBYGGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYYGGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGGYYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY GGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGYY RBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRYBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRBBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRGBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRBBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRYBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRBBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRGBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRBBRYBRGBYRGBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRYBRGBYRBBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBRGBYRBBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRBBYRBBB RRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBYRRRB
main.c:1:1: error: unknown type name 'GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGY' 1 | GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGY | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.c:3:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBY' 3 | GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBY | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.c:3:1: error: unknown type name 'GGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGGYYYGGBRYBRGBY'
s338690282
p00000
C
100 50 7 35 32 20 38 46 49 24 30 6 22 37 17 39 48 44 17 1 45 16 36 18 19 5 46 49 29 34 17 24 12 44 41 29 10 10 14 45 25 48 34 2 2 1 35 3 41 36 46 32 4 23 2 49 0 30 28 45 49 11 14 6 20 31 5 20 35 11 41 26 15 18 10 45 28 19 19 15 49 3 5 8 47 47 27 6 8 7 27 42 2 23 19 24 48 34 4 46 45 11 45 50 23 29 5 1 1 20 48 13 0 4 26 35 10 8 32 39 44 1 35 27 41 14 20 45 25 10 19 15 40 2 5 11 38 39 31 29 13 14 10 37 43 3 18 1 22 16 11 47 40 31 18 39 24 0 46 16 35 26 10 16 32 20 28 9 28 41 10 21 39 32 5 24 8 31 36 48 25 16 48 17 45 20 48 45 6 42 21 32 11 43 18 47 49 27 14 25 7 47 18 24 47 50 30 49 5 37 16 14 24 41 35 3 10 31 39 34 10 2 2 35 46 40 21 18 34 11 5 30 26 23 30 5 27 33 3 19 4 29 21 7 34 45 20 10 10 20 26 29 44 40 23 44 15 49 30 35 13 39 11 42 16 44 13 16 48 2 28 49 36 20 32 3 6 16 16 43 13 8 37 10 23 38 48 29 4 18 38 49 15 31 7 20 42 40 26 4 37 23 43 25 4 10 44 50 29 27 10 3 41 49 14 24 27 15 48 28 29 47 3 3 43 25 5 26 45 35 1 6 13 36 28 4 10 21 30 41 33 25 48 13 45 22 24 23 37 17 37 41 1 45 14 20 44 40 20 22 46 9 26 5 29 39 46 27 9 42 11 9 18 14 17 42 23 10 36 24 16 18 28 43 15 10 13 34 13 9 0 27 7 36 19 15 32 41 26 37 43 11 34 1 47 20 25 12 44 50 32 36 10 28 9 2 2 13 42 26 16 25 14 41 33 19 45 11 23 14 46 33 4 15 48 0 31 2 41 3 44 4 33 43 40 43 33 25 46 12 6 20 1 35 38 33 11 34 5 1 44 48 49 48 35 16 14 6 48 43 18 2 10 0 48 31 45 41 43 0 7 9 4 42 20 31 44 0 25 20 16 15 1 36 19 34 14 12 3 22 40 0 6 4 24 20 1 45 36 44 12 50 46 3 16 8 15 47 48 48 34 4 13 29 0 37 24 8 43 6 40 13 48 49 12 17 38 8 1 46 4 48 21 37 42 8 1 0 46 31 5 19 48 49 35 10 49 42 36 27 18 17 49 11 40 28 16 18 29 33 37 8 14 7 31 33 45 42 15 20 33 32 23 9 39 38 31 17 19 37 31 30 44 35 5 21 42 22 14 1 40 4 5 37 9 5 11 26 20 4 47 21 47 50 37 30 37 26 18 35 0 37 8 38 30 16 43 14 31 3 30 31 4 9 9 46 41 47 21 48 17 21 44 16 46 33 8 26 46 46 9 17 12 43 34 27 6 38 9 40 42 47 41 1 21 13 7 29 47 14 10 5 27 23 36 44 21 17 7 17 20 33 14 49 35 42 26 36 27 20 30 22 26 48 17 25 23 20 11 21 4 32 35 21 27 48 6 13 15 36 16 31 31 16 20 50 31 8 46 32 7 27 38 11 9 7 45 21 34 5 18 40 25 8 40 11 17 16 14 28 27 14 32 14 9 26 34 30 44 2 34 23 13 23 30 26 34 19 30 49 47 22 24 14 40 8 30 45 26 3 24 7 24 33 18 2 21 16 10 45 33 47 18 49 18 3 20 0 25 22 23 47 49 40 45 25 12 38 48 22 21 45 42 10 30 1 29 39 12 45 17 36 34 3 42 13 35 50 8 13 10 33 30 27 13 3 28 4 40 28 1 24 25 21 21 31 4 6 0 40 44 40 24 10 25 28 33 46 46 7 36 16 10 23 40 19 44 34 27 29 23 48 13 34 4 9 20 21 16 11 15 39 12 37 1 35 0 47 16 2 32 42 5 45 18 13 16 43 14 38 48 11 23 27 37 7 46 13 36 2 28 40 25 27 42 43 28 44 12 44 40 45 46 15 36 3 41 6 29 50 48 44 27 39 20 48 31 38 36 49 34 37 17 8 24 1 29 22 36 31 14 9 13 9 27 43 46 49 0 7 22 0 46 16 1 32 39 26 15 49 21 39 26 1 37 16 47 34 3 17 39 2 15 43 26 22 11 12 37 10 21 18 19 21 10 0 35 0 4 26 26 3 0 37 15 13 4 7 4 43 48 13 24 1 46 8 7 44 23 45 21 40 4 15 14 49 12 16 15 42 0 50 43 45 0 38 8 22 49 6 42 36 20 34 31 32 32 41 41 35 6 2 12 3 40 5 16 16 15 31 21 13 16 17 24 32 9 9 5 48 4 25 15 47 34 17 9 0 30 37 8 21 36 27 40 7 24 40 32 3 23 40 22 46 17 26 7 13 29 34 35 1 11 46 9 19 49 30 14 22 19 6 17 7 44 19 33 16 14 38 9 31 19 37 28 36 28 8 14 0 49 10 42 50 2 7 2 21 1 31 21 44 41 48 48 6 38 7 32 48 21 9 17 48 18 5 37 23 26 34 20 20 23 34 27 30 22 23 41 12 1 43 5 3 7 46 42 24 10 31 3 21 22 41 41 28 19 46 46 17 2 25 31 9 37 9 9 1 39 41 33 38 14 21 35 27 41 2 17 21 1 24 34 25 42 12 15 12 3 6 9 41 29 16 32 42 0 40 25 8 43 7 32 17 46 50 30 44 38 41 47 18 46 20 25 0 11 24 35 47 4 10 33 24 26 42 43 35 25 16 18 27 29 37 48 15 24 12 16 13 10 6 4 29 32 43 27 12 29 34 17 1 10 36 45 38 26 1 29 48 24 3 17 16 25 49 40 6 31 42 12 16 20 2 49 26 46 26 46 14 38 49 10 5 15 41 35 15 44 18 43 11 14 39 22 12 27 9 39 1 19 39 2 1 18 14 42 50 28 40 39 3 16 15 1 7 19 10 1 16 1 20 4 15 30 20 42 4 43 3 9 11 24 14 5 6 30 45 7 46 33 49 36 37 49 19 15 16 44 45 30 34 32 13 15 8 0 44 34 43 12 37 47 3 5 36 1 8 9 43 31 17 4 4 43 8 4 49 23 4 25 8 44 10 38 39 21 5 19 31 33 31 49 5 19 20 34 44 42 23 28 33 38 32 41 46 38 12 40 50 46 16 16 24 40 1 4 44 45 1 20 2 27 8 1 7 21 41 43 38 49 23 20 4 26 8 14 10 42 4 49 15 6 46 21 26 39 35 48 18 20 47 37 38 20 42 6 0 46 45 34 4 38 14 19 33 9 1 22 22 44 1 6 27 37 27 48 46 3 24 12 49 14 35 21 28 38 34 27 11 28 16 30 49 16 26 31 3 33 27 27 34 26 13 28 26 12 16 40 3 23 50 41 2 37 23 12 40 40 24 1 13 19 35 4 3 30 6 16 20 37 14 34 19 46 10 43 20 31 48 1 4 43 31 39 1 6 47 5 6 42 11 21 26 19 0 47 13 30 17 6 40 34 30 32 26 9 41 41 42 46 40 39 29 47 4 22 27 30 23 1 23 34 4 34 31 0 30 4 10 45 29 48 30 1 10 10 2 6 3 1 41 45 42 44 17 20 1 47 48 44 29 24 50 23 33 9 41 22 2 37 48 36 16 0 31 49 9 27 29 38 42 11 3 25 18 37 4 24 25 15 13 49 28 49 9 35 7 11 49 0 37 10 11 47 47 3 31 43 31 7 19 11 36 24 11 22 46 4 19 15 15 21 21 33 19 43 5 31 31 27 38 5 3 18 22 49 43 0 7 4 15 24 49 26 49 2 7 10 26 45 17 27 11 41 34 39 20 30 8 40 45 2 21 46 50 49 43 46 40 49 6 48 14 15 14 33 32 16 24 24 1 28 45 1 12 42 27 35 5 43 2 17 13 7 28 48 45 12 11 22 21 36 1 18 1 35 2 15 40 34 13 26 27 41 33 8 44 40 33 11 28 49 7 35 34 42 4 36 9 30 16 15 33 30 16 17 33 35 20 18 44 23 14 33 42 22 12 48 9 36 36 46 31 38 30 44 30 16 46 34 0 40 20 13 31 33 50 37 14 19 40 4 49 37 2 23 16 21 34 0 10 3 39 30 11 48 28 34 14 28 24 13 13 4 25 38 19 46 16 12 17 34 21 6 30 16 38 24 24 46 49 22 2 35 33 39 23 14 42 11 24 38 43 17 5 37 34 19 31 25 9 1 7 49 15 31 5 38 34 4 27 30 15 34 24 29 44 48 10 47 36 36 4 35 23 29 49 10 35 8 9 30 29 45 26 17 5 45 50 33 40 0 27 12 28 25 49 7 1 26 37 47 33 38 42 23 46 13 13 3 38 4 13 43 23 34 11 31 36 19 19 43 6 26 1 46 3 34 11 1 48 5 43 48 22 32 46 36 39 18 23 9 3 28 12 37 18 26 46 23 16 4 31 15 12 23 7 33 34 15 20 18 17 32 15 14 0 39 7 11 21 39 18 31 18 24 1 30 4 36 40 47 12 21 44 22 5 25 40 1 50 40 11 20 37 22 38 26 26 27 34 0 21 16 34 15 34 45 47 15 19 20 11 44 7 41 35 33 38 32 23 37 7 28 1 35 11 45 22 39 39 37 4 7 23 11 7 38 4 7 27 4 49 24 15 39 22 6 39 1 39 11 40 13 48 46 42 42 31 9 47 14 22 21 32 2 41 45 3 40 44 45 19 31 20 44 0 35 36 43 5 40 3 25 22 45 37 2 11 15 29 19 50 10 2 41 24 11 3 47 0 14 9 48 18 31 2 3 4 3 40 45 0 44 48 16 39 46 34 0 12 4 34 4 45 21 33 36 34 20 34 36 35 35 16 44 47 3 7 19 14 2 47 47 14 15 11 45 45 3 8 46 0 7 29 42 29 46 16 13 0 13 48 1 45 35 39 15 34 43 45 46 44 48 13 42 38 9 12 25 21 33 41 21 13 22 18 20 34 43 6 34 35 34 50 6 31 20 10 20 4 24 20 6 1 3 17 13 1 10 23 43 14 35 26 44 8 37 5 47 31 1 8 40 26 16 36 13 33 7 32 46 3 38 41 2 16 5 16 9 2 17 3 39 34 17 4 29 26 43 45 10 0 7 23 3 17 26 34 10 6 1 39 16 19 10 15 31 40 35 3 31 21 43 10 6 36 6 0 15 25 12 20 46 49 26 3 44 4 17 18 37 3 11 21 8 50 23 37 39 30 8 12 19 40 23 34 19 5 47 47 0 26 18 38 43 43 2 5 32 36 11 29 43 46 48 19 38 27 19 28 7 26 8 32 40 9 16 14 16 17 15 33 12 6 43 46 21 4 0 11 2 45 41 39 41 29 42 11 9 16 7 15 40 30 42 9 47 14 40 6 23 36 31 24 39 11 42 42 21 23 15 6 4 45 18 10 46 5 25 32 22 12 21 14 47 45 43 50 25 9 33 39 47 34 40 15 29 40 26 19 36 10 6 13 24 19 28 39 9 14 45 27 11 23 36 1 25 20 16 0 25 23 29 20 40 19 7 34 36 23 10 16 4 28 33 11 29 39 48 43 0 12 3 40 21 46 35 2 42 17 16 46 3 44 40 48 16 2 14 24 32 37 25 8 41 21 15 13 20 21 10 14 7 28 33 19 5 47 24 41 22 25 14 5 37 3 19 33 4 50 7 8 37 24 32 41 0 21 39 3 11 33 31 46 11 39 16 36 1 49 14 5 8 34 13 19 42 46 4 38 23 11 2 35 46 47 35 25 26 38 18 0 28 39 21 37 46 48 29 43 24 32 47 11 49 41 16 21 31 5 38 40 9 6 16 1 26 2 3 22 26 5 40 11 22 19 45 25 49 23 17 15 18 17 6 23 26 7 9 47 44 3 12 28 38 14 10 13 30 6 17 50 36 12 7 19 8 27 7 32 19 42 45 10 1 19 48 21 36 44 29 26 16 20 7 36 15 30 30 44 16 23 47 5 29 38 35 43 25 44 15 11 26 28 36 35 21 8 47 27 7 23 3 10 4 19 43 23 46 12 0 48 17 47 36 21 3 29 35 1 15 41 23 10 12 34 20 17 45 3 42 45 44 49 26 20 6 2 18 18 44 12 15 1 16 20 10 46 23 38 49 23 47 50 31 33 10 44 0 18 29 32 37 33 13 12 8 29 39 42 31 0 23 36 7 9 17 37 46 42 32 21 37 10 40 0 1 2 44 23 45 32 20 34 5 14 16 6 46 27 43 17 48 6 27 44 3 0 16 48 32 20 42 32 20 21 31 25 33 28 23 44 48 4 11 28 28 25 18 12 34 33 2 30 30 34 40 6 25 8 34 27 5 25 28 9 9 43 47 21 34 33 22 33 15 50 38 12 44 19 6 18 46 30 22 3 48 33 20 27 28 36 17 44 32 8 15 24 4 47 5 26 9 42 19 3 42 36 30 36 15 12 6 28 5 4 42 13 31 10 37 4 40 23 47 12 49 3 31 37 37 46 1 21 13 5 39 19 25 41 42 48 6 11 3 46 27 8 15 2 9 0 19 16 7 6 24 6 29 16 10 11 43 6 13 3 33 8 12 4 22 29 49 3 3 30 40 50 1 39 6 8 9 10 8 25 16 22 35 41 5 22 32 44 34 41 35 39 28 36 3 8 12 41 36 40 11 41 31 38 40 0 30 39 46 12 11 46 15 20 35 18 37 21 42 28 12 40 12 16 17 29 27 14 24 35 21 2 4 44 27 8 41 38 45 6 47 13 1 36 2 40 33 26 4 17 11 24 4 22 8 35 40 15 2 23 0 4 1 28 26 17 49 45 37 35 5 6 1 50 49 43 3 43 31 7 47 15 5 30 12 35 23 9 21 36 37 11 10 14 37 16 37 5 14 9 3 38 10 17 11 15 36 18 10 8 9 14 26 39 23 47 45 16 24 12 7 17 2 40 24 11 32 47 7 10 16 27 7 18 49 36 45 5 33 42 4 31 14 37 7 3 20 45 35 43 19 22 8 32 10 43 13 20 44 11 40 47 31 30 39 34 16 49 16 21 39 3 42 0 2 50 42 3 23 19 27 20 22 45 27 10 31 24 8 28 4 16 15 12 9 40 5 39 28 28 6 28 28 32 21 21 31 5 24 1 24 47 24 2 22 4 42 1 12 17 28 43 29 38 33 38 6 35 29 35 27 6 13 34 14 45 39 14 5 30 1 25 16 38 28 21 27 40 42 21 22 1 7 41 15 21 40 19 29 7 6 19 5 20 14 3 4 10 16 17 17 33 41 19 43 20 22 50 41 11 15 36 13 15 18 9 2 23 5 25 39 46 29 49 31 1 11 14 4 14 17 35 32 16 6 25 28 49 39 4 16 29 10 29 41 43 44 0 39 29 16 46 26 7 25 37 46 1 9 27 1 34 16 22 13 41 0 40 48 14 40 1 44 35 44 39 30 20 29 45 39 16 49 25 42 39 24 33 12 14 40 7 11 24 48 49 29 27 16 6 39 34 42 36 8 38 20 49 25 50 10 45 15 31 8 34 37 27 6 40 46 10 18 25 1 26 9 9 4 32 42 49 49 33 24 11 7 46 4 3 36 2 5 14 48 36 34 40 48 45 13 32 30 32 6 15 7 12 8 0 25 25 44 19 0 7 9 13 30 17 3 9 16 14 19 4 23 22 1 15 44 25 17 23 47 5 7 16 39 15 17 12 17 17 40 49 31 12 25 28 12 29 29 49 38 12 44 45 3 48 34 50 12 24 2 25 8 14 31 48 15 30 31 44 15 32 21 21 26 38 7 36 34 13 18 17 25 37 7 3 21 20 22 24 14 23 44 26 0 15 37 19 24 39 46 18 14 40 22 30 39 23 28 46 16 42 36 44 14 36 29 1 47 12 6 0 25 25 35 23 26 0 41 38 42 6 40 12 6 46 47 26 43 10 19 6 23 37 2 31 1 48 23 29 33 8 11 46 30 7 34 26 20 50 8 14 13 20 48 11 21 17 17 43 4 14 37 44 16 4 17 48 45 44 28 8 31 40 5 2 39 46 25 1 22 36 4 2 16 38 6 23 13 18 6 43 17 34 33 0 37 33 39 17 49 30 27 33 26 15 21 46 35 8 11 15 48 14 44 0 18 31 2 9 24 41 0 33 2 40 26 15 34 33 23 1 33 9 14 35 34 20 25 36 32 30 29 24 2 20 44 47 25 0 2 50 7 42 3 37 9 0 18 33 21 4 24 25 17 27 19 4 10 31 2 39 36 16 11 35 42 12 11 9 11 11 15 18 16 26 3 21 5 27 26 1 5 23 32 1 26 37 0 2 5 42 19 30 42 34 9 21 16 28 47 12 31 47 39 43 31 37 24 0 14 20 15 47 2 29 43 44 48 4 16 36 47 39 46 6 17 34 23 20 27 8 12 1 33 15 6 30 44 9 3 18 31 50 31 15 33 12 24 18 13 18 29 15 15 4 14 21 32 16 28 49 48 6 29 30 33 48 12 43 25 35 1 19 24 8 15 39 34 48 20 49 8 24 16 31 15 48 29 7 2 0 15 44 7 40 7 20 24 0 38 40 14 38 35 0 9 44 46 17 40 48 43 10 16 31 23 2 41 44 30 45 9 17 45 3 39 13 7 45 23 38 13 48 36 46 26 23 49 39 41 34 40 7 38 50 46 39 11 14 36 31 19 14 24 41 26 30 3 17 48 44 3 41 31 30 30 26 18 42 29 19 17 2 32 39 8 20 47 34 29 48 34 8 16 42 12 16 49 48 22 26 33 15 42 22 18 37 45 25 49 17 29 12 44 2 19 17 2 31 22 7 2 18 29 42 15 15 11 34 9 42 13 5 10 29 8 3 28 27 17 46 28 23 45 14 8 10 25 48 32 34 42 21 5 21 2 50 15 36 14 48 23 16 49 5 9 38 24 28 33 11 6 2 6 30 6 21 11 22 5 4 3 38 14 36 10 31 41 5 0 23 17 17 3 12 39 13 22 5 1 7 41 48 17 23 10 22 28 34 44 48 45 10 39 49 37 28 46 46 30 48 34 37 20 9 15 37 0 2 23 15 43 10 10 20 13 42 34 29 43 38 27 16 27 15 48 45 15 45 43 28 42 12 43 9 16 16 22 50 47 19 45 10 40 1 29 0 24 16 35 14 44 32 43 10 42 7 31 26 25 21 1 29 18 30 15 24 45 12 3 48 21 11 32 11 9 33 12 48 12 6 0 44 12 5 38 20 4 30 12 14 47 15 1 17 44 40 46 49 41 13 2 34 48 7 25 38 46 8 41 41 36 49 15 4 36 41 4 17 24 21 21 23 32 26 37 34 40 32 16 19 33 32 46 21 4 1 39 30 10 50 11 22 46 46 25 29 9 0 0 18 4 25 22 46 0 26 13 47 37 20 43 12 31 13 16 38 17 18 3 33 48 45 28 4 6 16 41 42 33 37 17 39 10 10 13 26 36 23 37 30 24 5 44 11 43 10 18 21 49 48 29 8 5 12 44 36 12 46 28 45 28 39 34 48 35 22 49 37 25 49 46 40 17 11 5 23 1 1 21 1 45 1 0 45 9 22 14 43 31 10 19 50 39 0 3 2 24 47 49 37 27 26 43 33 4 15 31 5 35 37 37 39 1 3 38 33 49 21 17 10 15 25 41 44 49 24 26 25 47 24 21 14 13 17 1 33 48 34 33 21 39 40 22 10 10 9 44 12 43 9 31 22 22 22 35 11 17 14 46 18 37 0 38 39 33 32 17 1 23 12 16 39 22 32 3 47 49 43 42 23 9 32 2 37 45 13 4 1 48 35 27 16 19 50 37 6 2 34 4 5 29 41 1 40 28 11 44 41 39 33 3 26 1 33 35 23 22 36 37 38 21 7 13 30 8 10 43 47 36 15 45 46 3 31 6 1 36 26 42 45 42 43 9 45 22 45 27 14 18 40 31 45 3 11 48 42 25 11 22 17 39 43 27 33 13 0 24 17 35 27 27 37 13 35 21 49 32 1 31 13 13 17 41 40 9 34 28 0 32 22 46 24 18 32 15 50 8 32 40 7 43 21 10 47 20 6 42 42 30 31 38 1 5 23 23 13 10 45 2 2 45 17 42 16 21 3 33 23 24 17 36 46 30 1 38 31 44 24 7 45 23 29 6 29 47 8 2 4 43 39 3 46 7 29 7 40 13 38 32 18 14 44 5 44 15 10 46 3 26 0 34 41 49 46 29 32 21 15 4 8 37 45 4 11 4 17 24 7 2 16 5 11 26 42 11 8 6 50 3 11 32 33 37 28 10 6 13 45 0 15 11 19 33 29 19 31 23 41 4 11 34 1 47 9 38 30 12 20 16 48 32 19 32 43 31 45 48 48 0 11 40 24 13 33 30 4 4 8 15 49 46 44 20 8 0 13 3 19 39 21 33 16 18 0 41 39 9 9 45 36 38 1 21 1 11 15 35 0 5 2 24 44 49 49 46 0 3 42 12 46 19 38 13 5 13 22 39 35 44 50 33 21 32 34 3 4 33 48 20 20 10 13 22 17 20 20 9 9 20 13 33 29 29 18 27 32 43 15 7 42 27 10 48 1 14 47 45 15 6 17 46 18 36 7 30 40 36 7 27 10 0 29 20 48 40 33 48 6 30 8 49 47 48 13 18 13 49 6 11 7 29 16 23 4 26 12 23 0 45 45 20 41 11 2 25 23 39 20 36 35 29 28 28 47 33 32 42 3 10 40 39 50 11 6 12 17 36 49 30 31 12 7 19 10 42 45 33 6 49 20 31 16 36 14 48 45 0 32 6 10 6 47 22 35 20 6 4 34 2 15 5 25 15 8 23 6 35 35 3 34 13 49 5 4 0 0 14 21 0 7 33 6 31 1 4 8 41 43 8 14 42 8 9 32 39 25 16 19 39 2 11 17 3 4 1 16 21 22 5 39 37 18 29 33 45 36 20 28 42 35 30 39 42 50 44 22 32 8 9 28 11 13 19 36 32 36 15 31 8 30 42 31 18 36 9 43 26 13 6 35 35 20 43 32 28 10 13 23 4 16 18 38 1 34 29 44 24 32 20 12 26 44 13 22 44 20 31 38 15 1 34 27 23 2 22 36 10 15 13 31 9 11 31 10 20 44 45 16 5 31 27 40 29 23 26 7 13 29 44 28 46 20 31 3 5 16 22 35 39 48 31 12 17 37 10 50 23 32 5 22 28 9 10 0 1 25 36 43 14 43 19 48 40 10 24 27 3 20 32 17 17 16 1 13 35 22 26 32 36 14 4 14 5 6 24 11 15 30 31 1 4 45 23 48 49 3 5 37 26 43 23 24 5 40 10 37 38 24 13 17 19 25 39 14 32 48 31 13 25 30 28 2 15 14 25 30 0 27 17 41 18 23 21 31 16 4 14 27 18 38 29 18 45 28 13 45 33 50 28 9 8 38 5 8 24 39 14 45 8 36 6 48 13 37 7 38 14 18 2 29 6 45 48 16 25 3 9 4 49 8 30 36 13 38 47 11 45 4 27 34 6 20 40 47 32 47 7 9 35 42 16 14 39 14 38 47 30 30 18 49 1 15 38 35 35 31 3 30 47 3 35 25 15 47 24 31 22 8 44 10 41 30 1 39 25 5 44 12 36 38 36 25 12 48 4 7 11 8 29 50 39 12 14 39 3 1 36 17 11 20 46 7 9 39 21 10 32 38 34 47 47 35 25 0 9 7 39 47 11 19 36 0 36 40 32 18 40 2 41 38 36 45 22 43 45 28 35 19 4 1 17 42 16 25 36 25 42 4 33 19 23 9 23 6 20 11 49 41 25 11 13 35 29 25 7 42 29 33 4 21 12 28 34 21 13 6 4 38 47 20 10 34 8 28 29 29 40 16 40 3 20 50 28 39 49 25 35 28 19 2 29 0 40 19 37 8 14 21 24 12 6 26 31 16 20 49 6 35 7 23 39 43 5 5 1 36 32 1 30 9 15 5 4 42 10 25 25 49 1 7 46 28 11 32 33 40 44 2 31 21 26 31 26 27 14 47 37 18 14 29 49 3 28 38 35 10 45 47 14 10 9 21 4 38 38 33 4 36 28 4 36 12 7 22 36 24 40 4 19 18 42 20 33 50 23 9 18 29 18 15 23 34 39 11 19 8 23 7 15 1 36 41 43 6 8 30 28 2 46 0 0 18 45 16 34 3 41 9 26 49 32 22 24 44 34 8 33 48 2 39 15 9 49 8 31 9 16 12 38 38 12 7 13 48 7 48 24 0 1 34 7 32 0 34 6 39 27 29 42 8 37 37 19 0 17 33 45 34 10 22 46 10 22 30 30 4 8 10 28 36 4 4 45 1 19 50 39 41 46 26 31 39 29 16 45 46 7 41 11 46 6 28 37 47 18 49 8 13 6 16 27 14 17 21 11 13 33 29 10 41 4 34 6 1 31 38 0 12 48 4 30 17 8 27 33 42 15 22 27 4 5 22 38 0 19 2 44 4 14 19 32 38 46 27 3 4 40 39 16 46 16 25 43 27 14 30 3 30 19 25 2 41 35 4 48 42 42 6 7 40 47 43 25 28 29 20 21 50 33 9 38 35 49 25 2 30 49 30 29 9 49 25 33 24 45 0 23 15 17 23 8 48 12 6 49 28 27 47 27 15 11 10 7 10 1 0 36 15 40 40 31 14 25 20 15 38 39 7 20 28 4 17 30 30 27 5 24 1 8 20 3 10 17 18 31 17 20 10 19 1 33 8 0 16 15 5 28 49 5 9 12 43 28 5 27 1 23 32 10 14 3 21 2 33 24 44 40 9 1 50 6 10 34 42 6 22 26 31 21 21 27 37 44 37 49 5 14 16 11 44 16 30 19 40 47 31 5 49 30 40 32 17 5 11 1 28 10 31 33 11 10 4 3 3 48 13 42 3 9 25 29 49 48 45 6 11 40 21 26 9 11 16 11 13 26 36 28 11 41 1 18 22 22 21 5 47 25 34 34 13 1 49 10 17 13 3 44 21 29 40 24 36 30 7 7 35 49 41 44 13 47 50 43 35 20 41 48 46 11 46 25 39 48 47 6 24 3 6 42 14 3 44 31 17 44 2 2 38 17 9 46 10 35 5 1 0 45 7 47 23 47 45 3 10 13 16 42 35 34 38 23 4 49 44 32 35 22 40 46 43 23 8 49 1 3 49 14 12 2 49 6 10 35 48 44 37 20 5 15 38 22 21 43 26 43 15 16 12 11 34 5 5 6 10 43 8 6 8 9 16 20 5 8 50 28 4 2 39 47 2 19 8 12 34 46 22 1 16 0 13 34 18 22 28 19 30 12 20 34 43 40 6 40 46 1 4 34 31 0 20 43 6 34 31 28 30 40 41 3 38 46 19 4 24 6 18 47 32 4 44 38 29 26 27 1 35 25 25 31 25 17 2 46 24 31 22 33 37 4 1 13 17 25 32 21 19 41 46 1 39 2 28 40 42 19 44 5 37 27 45 20 16 12 44 47 50 42 16 31 18 46 48 29 47 44 26 20 39 39 35 27 17 41 19 26 18 36 31 25 12 46 41 1 18 25 19 39 20 9 6 36 16 38 33 5 25 13 3 9 37 14 6 39 15 5 42 26 1 34 30 23 25 14 40 22 11 43 3 9 46 31 20 10 15 12 26 3 13 40 5 29 18 0 6 11 38 34 19 48 21 40 4 0 22 47 41 44 4 34 16 44 5 0 13 36 40 20 50 40 3 11 16 18 37 4 10 28 16 22 41 9 30 7 11 41 14 28 19 6 11 48 14 14 19 12 25 1 41 39 1 14 33 45 0 17 45 21 43 11 20 12 19 34 25 1 29 31 38 39 38 48 12 49 11 2 4 32 22 36 1 46 41 23 40 34 5 41 2 36 49 49 33 23 24 19 0 9 49 3 1 39 38 37 40 14 46 0 36 45 41 18 41 38 22 33 25 32 19 28 50 28 18 27 11 1 25 37 38 21 20 28 30 27 16 8 49 44 41 16 3 44 35 9 1 41 14 18 43 34 3 43 20 21 22 22 10 32 3 47 26 49 27 24 32 6 0 43 10 31 25 42 2 13 4 11 30 3 38 19 12 24 46 42 14 33 15 19 17 25 24 19 43 43 49 1 45 25 7 0 42 5 19 33 44 44 48 24 43 25 49 36 28 5 39 45 15 43 19 4 24 32 50 44 17 25 24 45 41 43 0 24 17 47 16 34 28 11 9 40 34 4 4 46 25 40 29 49 15 19 38 34 8 47 22 31 27 26 20 47 22 18 15 20 4 39 0 32 23 33 38 10 6 8 48 42 42 31 0 28 12 7 4 38 20 21 48 26 23 48 17 18 39 45 34 32 15 44 28 35 45 39 47 16 8 2 34 45 23 1 8 35 24 36 8 12 39 44 43 6 25 13 8 10 50 15 43 43 8 9 37 29 25 47 45 4 12 28 12 40 14 13 22 47 21 1 9 34 24 16 9 16 42 37 46 20 13 6 16 40 19 22 19 3 7 45 23 14 5 20 34 36 33 20 21 6 41 5 22 31 48 16 3 32 2 40 47 49 40 15 38 13 17 9 5 7 22 24 45 28 15 28 49 30 37 48 4 20 2 29 45 26 9 1 41 48 48 11 27 39 2 38 48 15 23 19 50 4 46 44 40 32 47 25 24 20 8 46 0 45 48 37 32 27 37 49 41 30 29 49 27 30 32 17 15 43 17 2 47 19 2 13 39 38 9 49 46 13 9 17 4 47 25 7 6 37 17 12 11 47 27 47 14 38 31 10 13 30 49 48 12 11 49 2 2 2 15 8 25 48 46 25 32 30 17 21 34 39 36 35 32 45 34 14 25 47 27 16 14 39 0 27 30 27 29 49 8 32 50 46 34 31 27 20 3 14 32 48 32 42 29 17 0 28 13 44 19 48 26 29 44 8 9 4 34 21 1 8 17 16 47 46 17 1 16 24 23 20 13 48 16 6 35 42 36 17 15 48 27 6 15 41 45 21 43 24 33 29 46 44 40 0 1 44 19 8 28 17 15 42 49 42 34 32 49 34 33 21 28 14 6 10 32 43 18 1 31 25 19 1 1 28 22 10 18 2 20 41 34 47 50 37 34 39 24 18 18 19 2 46 24 32 39 13 45 18 36 40 22 20 40 37 38 0 23 0 19 41 12 15 0 16 6 49 18 34 3 30 27 36 19 6 19 1 20 8 49 14 35 6 44 21 22 25 25 32 24 46 11 45 11 37 36 11 46 18 49 4 40 49 6 26 27 10 18 25 39 48 4 18 40 24 0 48 31 12 9 26 21 6 43 20 32 33 1 30 35 28 28 0 26 25 50 36 4 36 4 10 0 2 7 22 12 25 25 5 37 25 34 1 22 43 37 5 38 5 7 18 3 17 46 7 34 28 14 31 41 39 41 19 42 41 17 49 4 5 30 42 43 42 35 15 21 16 22 23 41 9 27 30 38 44 23 23 4 22 12 38 8 46 38 3 2 0 5 5 48 7 49 36 1 42 8 35 8 23 32 31 11 0 44 10 33 49 22 17 6 38 34 34 38 14 14 23 50 42 20 28 26 49 49 6 8 18 27 34 43 31 14 9 20 43 37 24 7 20 43 5 11 46 30 28 16 25 40 3 32 8 7 10 16 9 28 6 41 24 6 5 14 34 27 20 44 35 6 15 21 2 49 49 27 32 8 29 33 44 2 48 9 16 25 9 16 25 0 3 9 7 42 6 27 23 9 20 35 21 24 15 15 6 39 23 3 42 37 48 47 37 3 39 49 6 31 29 33 16 50 33 42 23 16 38 15 16 26 36 21 37 12 41 7 28 18 36 40 0 37 16 13 27 31 26 26 19 1 11 44 42 16 33 22 36 3 32 18 38 26 29 21 40 19 38 25 28 28 37 3 15 43 15 42 17 37 25 36 19 11 39 22 30 17 28 11 45 33 21 0 29 20 9 48 21 0 39 26 24 39 28 44 30 47 33 8 36 6 35 24 45 26 17 46 47 42 44 15 7 36 26 50 17 7 36 34 38 38 46 22 8 48 17 11 2 0 31 40 48 4 36 10 35 11 22 18 7 0 5 21 25 12 26 12 37 25 19 15 47 5 14 31 38 41 4 36 42 41 42 28 26 12 45 17 38 46 24 30 36 11 46 22 1 39 24 44 35 32 14 29 10 48 38 42 10 3 39 31 28 4 44 39 10 49 17 41 7 43 45 42 21 23 5 30 15 0 12 27 24 34 32 20 6 50 34 13 16 19 22 4 41 46 13 3 15 14 13 4 11 5 9 1 26 49 10 41 17 17 11 38 15 0 0 20 44 11 33 6 34 25 30 44 11 26 21 35 48 9 40 0 40 16 14 25 2 19 16 28 16 32 36 36 16 11 33 16 7 41 23 4 22 34 17 38 49 47 10 1 24 14 7 22 1 3 30 47 47 14 23 9 25 42 47 30 46 4 4 27 47 20 45 13 31 30 4 50 2 28 15 16 26 40 35 7 17 21 21 18 5 20 44 4 43 36 17 48 1 5 40 17 45 15 1 14 49 29 20 35 16 42 7 43 1 19 33 4 0 5 41 35 23 17 26 43 40 41 3 43 42 37 47 48 10 9 3 24 13 29 39 46 10 11 22 5 40 40 31 22 9 33 46 22 8 48 0 3 16 8 40 37 46 7 46 0 36 49 16 5 25 35 29 1 2 42 46 28 6 50 34 0 16 49 29 2 9 8 49 3 18 27 48 36 49 6 24 24 23 22 23 29 49 34 1 3 31 24 31 9 9 26 8 38 10 19 26 25 40 9 28 27 28 28 36 10 13 37 34 8 35 35 9 11 37 19 19 1 14 24 44 2 11 21 0 26 40 31 41 19 2 31 40 27 47 11 10 45 38 24 48 8 3 40 9 28 19 34 9 3 30 41 8 9 5 46 13 4 36 38 27 50 25 20 18 46 21 33 30 25 34 8 31 39 29 19 17 46 9 43 29 32 26 18 1 10 38 34 31 36 47 35 12 31 10 32 6 37 27 11 15 47 13 42 20 38 36 45 11 40 34 11 38 40 23 11 29 10 1 48 46 9 47 7 34 40 40 17 40 6 28 41 29 49 3 40 33 45 37 22 36 25 36 9 33 13 16 17 21 18 24 21 16 1 27 18 29 19 42 20 35 14 26 50 12 14 30 20 45 40 1 24 7 32 26 35 7 21 49 16 7 25 45 16 33 34 2 20 45 15 26 47 6 21 42 22 8 3 36 38 43 0 44 20 12 20 33 32 6 13 41 36 49 33 38 41 3 49 17 44 12 19 15 7 41 0 40 26 29 22 4 48 15 27 23 6 18 24 47 38 39 39 38 26 25 28 22 40 18 31 28 43 34 26 0 41 0 29 27 31 18 33 2 25 29 50 11 32 48 23 7 46 21 11 11 38 21 0 33 23 6 37 28 21 8 35 38 29 22 2 12 43 47 31 5 30 22 21 41 49 13 35 44 5 45 17 46 29 43 0 17 46 3 11 38 26 18 40 47 9 6 4 43 48 2 25 35 26 28 42 46 40 26 21 27 23 46 39 38 6 3 7 40 28 2 20 19 16 5 12 11 4 25 28 16 1 2 31 3 0 28 4 23 1 41 37 26 50 26 27 14 21 28 35 17 45 23 44 5 21 1 13 5 10 46 25 30 31 12 43 29 29 10 14 17 18 21 8 41 5 43 22 35 2 27 0 8 13 48 0 45 0 35 31 14 44 10 23 7 36 26 36 17 35 16 37 1 42 3 47 46 32 48 25 20 28 35 33 26 21 42 27 34 48 22 33 9 16 42 18 6 24 3 19 5 6 9 13 7 3 49 47 10 30 36 21 22 48 9 50 6 20 1 28 39 38 42 25 38 4 30 49 32 6 7 27 5 11 15 28 34 38 10 8 39 19 24 45 30 29 29 30 0 40 0 42 9 47 28 9 18 0 2 9 9 14 7 22 37 22 26 37 1 40 10 35 45 26 10 40 31 32 6 6 20 30 22 1 48 16 27 30 10 20 17 24 40 27 34 11 47 48 49 10 48 44 39 0 46 27 20 27 40 11 9 32 33 32 42 20 34 50 50 0 44 15 16 41 40 17 49 11 38 37 17 27 9 4 27 28 24 1 25 2 19 30 11 44 35 17 22 42 28 23 16 33 43 33 38 38 24 12 1 18 49 9 0 27 46 20 13 38 5 24 22 33 41 26 5 28 27 6 44 11 21 14 29 17 44 19 48 49 5 5 32 32 17 14 15 28 10 16 34 6 17 9 41 46 40 18 35 30 25 46 24 3 41 36 11 9 20 26 5 50 9 32 38 20 26 40 47 26 31 47 25 32 44 3 38 35 22 40 39 19 10 7 14 17 11 47 18 27 38 15 3 41 36 13 47 44 12 43 3 29 20 15 40 29 11 33 18 7 14 24 23 38 26 37 31 0 5 44 35 38 28 14 9 6 29 41 28 31 1 22 35 26 11 22 37 5 5 19 6 30 13 39 44 26 18 24 27 12 26 4 18 28 1 30 19 48 34 36 22 8 30 50 10 34 41 13 46 2 39 9 19 49 15 5 3 30 18 42 32 45 6 11 10 38 46 27 31 29 23 10 0 8 9 0 19 15 42 32 14 34 18 33 41 45 34 2 38 21 25 32 44 5 16 12 44 25 44 17 39 40 5 14 28 47 48 41 15 30 13 31 23 15 14 49 14 3 10 36 1 46 24 40 18 12 1 45 3 43 38 43 13 42 33 32 8 24 39 3 23 46 4 19 34 50 12 18 49 2 22 8 19 16 27 18 27 40 17 13 21 15 29 22 27 19 48 30 31 5 9 12 3 0 10 29 47 46 12 34 47 17 49 27 43 20 33 1 45 17 11 40 15 42 32 31 13 45 12 22 11 15 0 10 34 32 16 28 40 38 29 29 12 5 5 39 6 1 26 38 40 5 18 1 29 42 48 11 32 44 37 38 33 17 10 26 49 40 0 29 4 17 28 33 8 14 23 50 23 16 0 38 13 19 35 36 17 10 17 28 19 13 48 36 11 29 23 0 36 26 29 9 5 22 4 38 17 32 45 45 11 24 48 34 34 1 43 11 20 40 11 9 40 2 3 27 46 33 32 11 27 32 10 14 21 38 5 1 3 14 20 19 46 31 39 33 3 24 32 44 44 35 15 18 3 0 37 19 46 23 33 43 31 2 6 12 8 12 41 12 13 10 26 16 31 35 41 23 49 50 11 17 44 29 25 44 21 22 16 36 40 14 6 0 17 19 21 33 9 21 10 22 46 6 48 14 4 40 47 21 13 7 1 26 39 11 37 3 21 11 33 40 39 7 26 47 40 49 26 37 30 26 21 19 10 15 33 30 33 46 6 7 2 41 4 41 34 5 2 35 45 35 17 44 25 16 42 19 41 22 16 37 6 17 49 32 6 39 33 39 13 15 36 41 47 31 6 9 32 27 37 50 45 13 5 49 20 37 5 24 40 13 3 40 31 49 12 44 46 36 32 22 8 23 22 13 19 0 30 39 46 24 38 43 34 5 37 42 42 33 42 45 17 48 46 8 35 32 47 30 3 12 18 41 2 21 36 16 4 1 22 10 6 41 25 12 3 45 47 39 5 22 29 25 35 21 20 18 34 38 3 22 49 1 0 36 13 17 23 46 3 9 18 44 6 10 1 48 6 12 6 35 38 50 35 11 23 44 5 24 45 33 48 20 23 24 33 19 33 1 48 44 22 32 20 14 1 11 34 32 21 33 18 3 21 44 18 23 14 10 39 37 47 21 43 27 7 41 45 44 47 20 42 13 38 39 3 37 28 49 1 19 20 41 33 1 23 38 36 25 25 23 49 42 13 21 44 40 20 17 12 5 34 23 38 41 19 47 13 14 29 49 46 30 34 8 41 27 31 6 46 46 3 16 30 50 40 38 24 14 9 27 0 6 48 21 15 6 25 23 35 49 35 35 20 0 34 42 27 5 31 38 39 35 8 25 18 43 24 34 13 14 7 6 11 27 21 47 28 13 34 20 20 40 13 47 5 33 41 22 40 30 38 46 11 30 16 41 22 36 23 31 25 37 1 22 37 15 15 49 20 41 28 41 19 25 31 23 39 29 8 46 46 7 10 26 43 15 38 12 17 43 2 3 43 31 31 50 27 46 46 45 46 37 25 17 15 40 19 42 6 36 49 45 38 46 46 23 39 5 35 47 40 34 7 10 41 22 15 11 36 33 18 44 6 21 20 40 12 18 12 11 32 21 5 2 7 46 18 3 25 16 1 9 0 41 0 16 19 6 13 32 27 34 39 10 27 39 6 18 0 33 8 13 30 37 5 23 16 41 34 36 26 26 8 9 45 15 18 31 25 3 21 11 14 41 37 44 22 50 31 13 22 6 38 2 43 31 11 34 18 10 16 2 10 37 18 27 48 13 5 37 3 6 35 47 1 43 44 38 19 42 23 12 2 45 48 10 14 33 27 43 45 6 43 12 45 43 43 49 39 43 7 42 37 38 49 44 40 9 32 5 33 35 1 0 18 33 31 8 10 5 16 10 1 46 11 5 22 12 40 48 5 42 5 5 40 30 31 13 0 33 40 41 19 37 18 49 42 2 21 50 8 8 38 48 9 6 20 26 21 33 46 44 31 23 39 45 35 16 5 18 45 28 6 48 37 24 47 47 40 43 45 33 5 14 2 23 32 3 20 17 49 31 37 27 12 48 5 10 22 18 14 21 28 16 47 45 20 11 41 36 42 48 5 8 20 3 12 33 31 31 7 45 1 13 13 18 22 45 12 26 29 8 14 11 48 18 24 15 6 49 30 35 2 23 47 10 43 24 27 34 43 50 7 30 45 9 19 38 3 49 21 48 17 26 13 24 46 15 1 17 31 30 45 30 20 43 27 37 23 48 21 6 31 26 4 24 36 39 35 6 12 30 38 2 5 1 6 7 26 7 16 11 25 45 38 15 42 15 39 10 3 34 14 18 16 3 11 46 42 5 43 32 3 8 35 42 34 11 10 26 0 25 19 7 38 30 20 9 22 26 46 10 20 37 10 21 29 22 40 34 18 22 27 50 17 31 13 5 1 12 42 19 6 31 31 38 7 38 2 12 11 37 34 44 32 19 48 20 24 46 10 44 39 12 24 37 11 12 43 36 43 49 24 5 5 12 30 33 44 5 0 35 45 27 43 41 30 4 47 7 11 0 1 25 2 13 12 6 13 6 26 0 42 48 5 36 6 0 10 11 19 14 6 49 47 27 42 39 41 2 32 33 46 49 3 16 9 22 13 39 23 15 28 34 40 50 14 21 47 47 24 36 41 5 4 4 33 11 47 37 45 47 43 27 34 33 1 17 36 8 46 36 40 6 37 22 26 23 20 45 43 34 21 26 31 15 40 38 30 25 27 21 26 10 23 24 48 35 43 40 42 33 44 31 26 3 40 11 4 48 27 48 6 38 33 23 24 4 4 31 12 38 30 3 2 1 48 42 28 21 36 30 33 10 5 45 12 16 13 40 6 13 14 47 39 14 2 50 22 19 6 37 34 22 49 3 40 41 21 14 32 3 27 8 47 7 8 4 20 36 21 11 11 24 0 48 0 14 27 33 19 3 33 33 21 12 26 48 36 19 3 31 13 10 22 31 39 9 18 39 36 47 45 46 1 2 22 49 45 14 17 1 33 4 18 45 34 21 17 20 44 7 40 13 2 41 18 37 45 32 1 47 26 28 29 2 44 39 30 48 2 36 4 23 49 34 41 8 18 50 7 29 13 20 47 11 31 23 39 26 6 38 24 22 3 31 18 21 16 5 12 11 24 10 9 32 11 45 2 10 1 14 2 49 39 20 35 25 11 18 44 19 1 4 6 25 41 7 36 49 47 21 13 23 10 21 32 34 6 7 17 20 45 34 22 8 20 31 5 49 33 35 49 6 18 10 40 26 32 29 17 31 26 36 1 34 4 10 8 26 19 14 18 41 46 16 48 4 0 34 47 50 5 19 46 2 23 33 10 36 34 14 1 32 13 49 15 49 37 48 8 34 19 33 16 8 30 46 32 36 9 43 43 40 41 14 13 23 43 28 47 49 10 23 42 8 31 18 23 31 8 27 16 33 16 46 10 42 42 1 43 36 29 20 44 8 27 20 34 32 31 42 48 40 31 12 15 38 48 6 31 48 20 36 33 44 32 24 33 26 36 15 25 20 13 40 36 20 29 11 10 8 2 50 4 49 33 46 18 7 48 4 28 26 27 14 38 33 9 33 47 23 19 35 9 30 37 27 21 42 9 20 37 46 45 28 24 42 45 43 25 3 0 27 48 37 30 39 42 40 20 39 23 33 14 1 25 47 14 24 28 15 39 34 45 19 12 7 13 39 11 11 1 49 42 23 39 32 36 6 13 37 22 36 46 22 20 34 37 15 20 9 8 3 31 43 44 8 23 34 0 2 47 40 46 50 2 14 36 18 38 45 27 14 40 27 42 14 35 20 14 30 34 44 28 32 11 4 39 47 5 40 5 7 45 36 37 24 9 47 0 27 43 33 43 35 42 27 11 25 49 34 47 26 5 17 29 18 9 15 22 27 16 12 6 44 35 45 48 48 18 11 42 35 25 18 45 6 20 20 46 44 32 38 5 34 21 30 5 27 2 19 46 3 5 41 31 29 47 16 36 29 27 3 28 24 14 50 23 31 35 6 18 12 13 2 11 46 33 14 8 35 49 18 11 14 41 32 49 28 12 29 18 47 6 10 7 32 12 48 32 0 13 27 5 17 12 46 29 37 13 12 10 21 23 14 30 30 36 48 47 15 9 15 27 35 13 26 26 8 17 31 24 30 9 21 8 37 47 10 18 29 25 48 22 3 0 37 13 10 33 42 35 13 26 40 8 34 49 16 16 41 42 2 47 6 21 18 24
main.c:1:1: error: expected identifier or '(' before numeric constant 1 | 100 | ^~~
s189960539
p00000
C
#include<stdio.h> int main() { for(n=1; n<=9;n++) for(i=1; i<=9; i++) printf("%d X %d = %d\n",n,i,n*i); return 0; }
main.c: In function 'main': main.c:4:5: error: 'n' undeclared (first use in this function) 4 | for(n=1; n<=9;n++) | ^ main.c:4:5: note: each undeclared identifier is reported only once for each function it appears in main.c:5:5: error: 'i' undeclared (first use in this function) 5 | for(i=1; i<=9; i++) | ^
s966824160
p00000
C
#include<stdio.h> int main(){ for(a=1;a<=9;a++){ for(b=1;b<=9;b++) printf("%dx%d=%d",a,b,a*b) } return 0; }
main.c: In function 'main': main.c:4:5: error: 'a' undeclared (first use in this function) 4 | for(a=1;a<=9;a++){ | ^ main.c:4:5: note: each undeclared identifier is reported only once for each function it appears in main.c:5:5: error: 'b' undeclared (first use in this function) 5 | for(b=1;b<=9;b++) | ^ main.c:6:27: error: expected ';' before '}' token 6 | printf("%dx%d=%d",a,b,a*b) | ^ | ; 7 | } | ~
s618856725
p00000
C
#include<stdio.h> int main(){ int n,i; for (n=1; n<10; n=n+1){ for (i=1; i<10; i=i+1){ printf("%d x %d= %d\n",n,i,n*i); } } if(i>=10){ break; } return 0; }
main.c: In function 'main': main.c:10:1: error: break statement not within loop or switch 10 | break; | ^~~~~
s939418021
p00000
C
#include<stdio.h> int main(){ int n,i; for (n=1; n<10; n=n+1){ for (i=1; i<10; i=i+1){ printf("%d x %d= %d\n",n,i n*i); } } return 0; }
main.c: In function 'main': main.c:6:29: error: expected ')' before 'n' 6 | printf("%d x %d= %d\n",n,i n*i); | ~ ^~ | )
s007942879
p00000
C
#include <stdio.h> int main(){ for(int i=0; i<9; i++){ for(int j=0; j<9; j++){ printf("%d×%d=%d\n",i,j,i*j); } }
main.c: In function 'main': main.c:7:1: error: expected declaration or statement at end of input 7 | } | ^
s732382931
p00000
C
#include<stdio.h> int main(void){ int a[100],first,second,third,i; a[0]=1; a[1]=2; a[2]=3; a[3]=4; a[4]=5; a[5]=6; a[6]=7; a[7]=8; a[8]=9; a[9]=10; for(i=-1;i<=9;i++){ if(a[i-1]<=a[i]){ third=second; second=first; first=a[i]; } printf("一番は%d\n",first); printf("二番は%d\n",second); printf("三番は%d\n",third); return 0; }
main.c: In function 'main': main.c:24:9: error: expected declaration or statement at end of input 24 | } | ^
s844151206
p00000
C
#include <stdio.h> 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; }
main.c:2:1: error: return type defaults to 'int' [-Wimplicit-int] 2 | main(void) | ^~~~ main.c: In function 'main': main.c:8:1: error: stray '\343' in program 8 | <U+3000> <U+3000>printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~ main.c:8:15: error: stray '\343' in program 8 | <U+3000> <U+3000>printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~
s340652782
p00000
C
#include <stdio.h> 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; }
main.c:2:1: error: return type defaults to 'int' [-Wimplicit-int] 2 | main(void) | ^~~~ main.c: In function 'main': main.c:8:1: error: stray '\343' in program 8 | <U+3000> <U+3000> printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~ main.c:8:15: error: stray '\343' in program 8 | <U+3000> <U+3000> printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~
s360778224
p00000
C
#include <stdio.h> 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; }
main.c:2:1: error: return type defaults to 'int' [-Wimplicit-int] 2 | main(void) | ^~~~ main.c: In function 'main': main.c:8:1: error: stray '\343' in program 8 | <U+3000> <U+3000> printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~ main.c:8:15: error: stray '\343' in program 8 | <U+3000> <U+3000> printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~
s345067551
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; }
main.c: In function 'main': main.c:8:1: error: stray '\343' in program 8 | <U+3000> <U+3000> printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~ main.c:8:15: error: stray '\343' in program 8 | <U+3000> <U+3000> printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~
s009130285
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; }
main.c: In function 'main': main.c:9:1: error: stray '\343' in program 9 | <U+3000> <U+3000> printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~ main.c:9:15: error: stray '\343' in program 9 | <U+3000> <U+3000> printf("%dx%d=%d\n", i, j, i * j); | ^~~~~~~~
s443828092
p00000
C
#include <stdio.h> int main(void){ int i,j; for(i=1;i<=9;i++){ for(j=1;j<=9;j++){ prntf("%dx%d=%d\n",i,j,i*j); } } return 0; }
main.c: In function 'main': main.c:7:12: error: implicit declaration of function 'prntf'; did you mean 'printf'? [-Wimplicit-function-declaration] 7 | prntf("%dx%d=%d\n",i,j,i*j); | ^~~~~ | printf
s028427028
p00000
C
#include<stdio.h> int main(){   int a, b, seki; a=0; b=0; for(a=1; a<=9; a++){ for(b=1; b<=9; b++){ seki=a*b; printf("%d=%dx%d\n",seki,a,b); } } return 0; }
main.c: In function 'main': main.c:4:1: error: stray '\343' in program 4 | <U+3000><U+3000>int a, b, seki; | ^~~~~~~~ main.c:4:3: error: stray '\343' in program 4 | <U+3000><U+3000>int a, b, seki; | ^~~~~~~~
s400929486
p00000
C
#include <stdio.h> int main(void){ int i,j; for(i=1;i<=10;i++){ printf("Tabla del %d/n",i); for(j=1;j<=10;j++) printf("%dx%d=%d/n",i,j,i*j); } } return 0;}
main.c:21:1: error: expected identifier or '(' before 'return' 21 | return 0;} | ^~~~~~ main.c:21:10: error: expected identifier or '(' before '}' token 21 | return 0;} | ^
s207053550
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;}
main.c:19:1: error: expected identifier or '(' before 'return' 19 | return 0;} | ^~~~~~ main.c:19:10: error: expected identifier or '(' before '}' token 19 | return 0;} | ^
s652736679
p00000
C
#include <stdio.h> #include <stdlib.h> int main(){ int i,j; for(i=1;i<=10;i++){ for(j=1;j<=10;j++) printf ("%d x %d=%d/n",i,j,i*j); } } return 0;}
main.c:19:1: error: expected identifier or '(' before 'return' 19 | return 0;} | ^~~~~~ main.c:19:10: error: expected identifier or '(' before '}' token 19 | return 0;} | ^
s482193760
p00000
C
#include <stdio.h> #include <stdlib.h> int main(){ int i,j; for(i=1;i<10;i++){ for(j=1;j<10;j++) printf ("%d x %d=%d/n",i,j,i*j); } } return 0;}
main.c:19:1: error: expected identifier or '(' before 'return' 19 | return 0;} | ^~~~~~ main.c:19:10: error: expected identifier or '(' before '}' token 19 | return 0;} | ^
s275949991
p00000
C
#include <stdio.h> int main(){ int i,j; for(i=1;i<10;i++){ for(j=1;j<10;j++) printf ("%d x %d=%d\n",i,j,i*j); } } return 0;}
main.c:19:1: error: expected identifier or '(' before 'return' 19 | return 0;} | ^~~~~~ main.c:19:10: error: expected identifier or '(' before '}' token 19 | return 0;} | ^
s662199649
p00000
C
#include <stdio.h> #include <ctype.h> #include <stdlib.h> int main() { int a, b; for (a = 1; a < 10; a++) { for (b = 1; b < 10; b++) { printf("%dx%d=%d\n", a, b, a*b); } } return 0; }
main.c:1:20: warning: extra tokens at end of #include directive 1 | #include <stdio.h> #include <ctype.h> #include <stdlib.h> int main() { int a, b; for (a = 1; a < 10; a++) { for (b = 1; b < 10; b++) { printf("%dx%d=%d\n", a, b, a*b); } } return 0; } | ^ /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
s330695534
p00000
C
#include <stdio.h> #include <ctype.h> #include <stdlib.h> int main() { int a, b; for (a = 1; a < 10; a++) { for (b = 1; b < 10; b++) { printf("%dx%d=%d\n", a, b, a*b); } } return 0; }
main.c:1:20: warning: extra tokens at end of #include directive 1 | #include <stdio.h> #include <ctype.h> #include <stdlib.h> int main() | ^ main.c:2:2: error: expected identifier or '(' before '{' token 2 | { int a, b; for (a = 1; a < 10; a++) { for (b = 1; b < 10; b++) { printf("%dx%d=%d\n", a, b, a*b); } } return 0; } | ^
s696002278
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; }
main.c: In function 'main': main.c:4:6: error: expected '=', ',', ';', 'asm' or '__attribute__' before '.' token 4 | int i.j; | ^ main.c:4:6: error: expected expression before '.' token main.c:5:5: error: 'i' undeclared (first use in this function) 5 | for(i=1;i<10;i++) | ^ main.c:5:5: note: each undeclared identifier is reported only once for each function it appears in main.c:7:5: error: 'j' undeclared (first use in this function) 7 | for(j=1;j<10;j++) | ^
s001764039
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; }
main.c: In function 'main': main.c:4:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before '.' token 4 | int i.j; | ^ main.c:4:13: error: expected expression before '.' token main.c:5:12: error: 'i' undeclared (first use in this function) 5 | for(i=1;i<10;i++) | ^ main.c:5:12: note: each undeclared identifier is reported only once for each function it appears in main.c:7:15: error: 'j' undeclared (first use in this function) 7 | for(j=1;j<10;j++) | ^
s926870423
p00000
C
include<stdio.h> int main(void){ for(int i = 1; i <= 9; i++){ for(int j = 1; j <= 9; j++){ int k = i * j; printf("%d×%d=%d\n",i,j,k); } } return 0; }
main.c:1:8: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token 1 | include<stdio.h> | ^
s667208763
p00000
C
#include<studio.h> int main(void) { int i, j; for(i = 1; i <= 9, i++) { for(j = 1; j <= 9; j++) printf("%dx%d=%d\n",i, j, i*j); } reutrn(0); }
main.c:1:9: fatal error: studio.h: No such file or directory 1 | #include<studio.h> | ^~~~~~~~~~ compilation terminated.
s487047888
p00000
C
#include <stdio.h> main(){ int a,b,; a=1,b=1; while(a<10){ while(b<10){ printf("%d*%d=%d\n",a,b,a*b); b++; } b=1; a++; } return 0; }
main.c:2:1: error: return type defaults to 'int' [-Wimplicit-int] 2 | main(){ | ^~~~ main.c: In function 'main': main.c:3:11: error: expected identifier or '(' before ';' token 3 | int a,b,; | ^
s703347198
p00000
C
de <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++; } return 0; }
main.c:1:4: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token 1 | de <stdio.h> | ^
s727235613
p00000
C
#include <stdio.h> main(){ int a,b,c; a=1; b=1; while(a<10){ while(b<10){ c=axb; printf("%d*%d=%d\n",a,b,c); b++; } b=1; a++; } return 0; }
main.c:2:1: error: return type defaults to 'int' [-Wimplicit-int] 2 | main(){ | ^~~~ main.c: In function 'main': main.c:8:9: error: 'axb' undeclared (first use in this function) 8 | c=axb; | ^~~ main.c:8:9: note: each undeclared identifier is reported only once for each function it appears in
s966897963
p00000
C
#include <stdio.h> main(){ int a,b,c; a=1; b=1; while(a<10){ while(b<10){ c=axxb; printf("%d*%d=%d\n",a,b,c); b++; } b=1; a++; } return 0; }
main.c:2:1: error: return type defaults to 'int' [-Wimplicit-int] 2 | main(){ | ^~~~ main.c: In function 'main': main.c:8:9: error: 'axxb' undeclared (first use in this function) 8 | c=axxb; | ^~~~ main.c:8:9: note: each undeclared identifier is reported only once for each function it appears in
s000369988
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);}}}
main.c:1:18: warning: extra tokens at end of #include directive 1 | #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);}}} | ^~~~ /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
s241993878
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++;}
main.c:2:1: error: return type defaults to 'int' [-Wimplicit-int] 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++;} | ^~~~ main.c: In function 'main': main.c:2:1: error: expected declaration or statement at end of input
s690681497
p00000
C
i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;}
main.c:1:1: warning: data definition has no type or storage class 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;} | ^ main.c:1:1: error: type defaults to 'int' in declaration of 'i' [-Wimplicit-int] main.c:1:3: error: return type defaults to 'int' [-Wimplicit-int] 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;} | ^~~~ main.c: In function 'main': main.c:1:3: error: type of 'j' defaults to 'int' [-Wimplicit-int] main.c:1:38: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;} | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;} main.c:1:38: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;} | ^~~~~~ main.c:1:38: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:1:67: error: 'exit' undeclared (first use in this function) 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;} | ^~~~ main.c:1:1: note: 'exit' is defined in header '<stdlib.h>'; this is probably fixable by adding '#include <stdlib.h>' +++ |+#include <stdlib.h> 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;} main.c:1:67: note: each undeclared identifier is reported only once for each function it appears in 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;} | ^~~~ main.c:1:71: error: expected ';' before numeric constant 1 | i;main(j){for(;i++<9;)for(j=0;j++<9;)printf("%dx%d=%d\n",i,j,i*j);exit 0;} | ^~ | ;
s562300880
p00000
C
i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;}
main.c:1:1: warning: data definition has no type or storage class 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;} | ^ main.c:1:1: error: type defaults to 'int' in declaration of 'i' [-Wimplicit-int] main.c:1:3: error: return type defaults to 'int' [-Wimplicit-int] 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;} | ^~~~ main.c: In function 'main': main.c:1:3: error: type of 'j' defaults to 'int' [-Wimplicit-int] main.c:1:38: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;} | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;} main.c:1:38: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;} | ^~~~~~ main.c:1:38: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:1:69: error: 'exit' undeclared (first use in this function) 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;} | ^~~~ main.c:1:1: note: 'exit' is defined in header '<stdlib.h>'; this is probably fixable by adding '#include <stdlib.h>' +++ |+#include <stdlib.h> 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;} main.c:1:69: note: each undeclared identifier is reported only once for each function it appears in 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;} | ^~~~ main.c:1:73: error: expected ';' before numeric constant 1 | i;main(j){for(;++i<=9;)for(j=1;j<=9;)printf("%dx%d=%d\n",i,j++,i*j);exit 0;} | ^~ | ;
s311377515
p00000
C
main(){int j=0;while(9>j++){int i=0;while(9>i++)printf("%dx%d=%d\n",j,i,i*j);}exit(0)}
main.c:1:1: error: return type defaults to 'int' [-Wimplicit-int] 1 | main(){int j=0;while(9>j++){int i=0;while(9>i++)printf("%dx%d=%d\n",j,i,i*j);}exit(0)} | ^~~~ main.c: In function 'main': main.c:1:49: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | main(){int j=0;while(9>j++){int i=0;while(9>i++)printf("%dx%d=%d\n",j,i,i*j);}exit(0)} | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | main(){int j=0;while(9>j++){int i=0;while(9>i++)printf("%dx%d=%d\n",j,i,i*j);}exit(0)} main.c:1:49: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | main(){int j=0;while(9>j++){int i=0;while(9>i++)printf("%dx%d=%d\n",j,i,i*j);}exit(0)} | ^~~~~~ main.c:1:49: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:1:79: error: implicit declaration of function 'exit' [-Wimplicit-function-declaration] 1 | main(){int j=0;while(9>j++){int i=0;while(9>i++)printf("%dx%d=%d\n",j,i,i*j);}exit(0)} | ^~~~ main.c:1:1: note: include '<stdlib.h>' or provide a declaration of 'exit' +++ |+#include <stdlib.h> 1 | main(){int j=0;while(9>j++){int i=0;while(9>i++)printf("%dx%d=%d\n",j,i,i*j);}exit(0)} main.c:1:79: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] 1 | main(){int j=0;while(9>j++){int i=0;while(9>i++)printf("%dx%d=%d\n",j,i,i*j);}exit(0)} | ^~~~ main.c:1:79: note: include '<stdlib.h>' or provide a declaration of 'exit' main.c:1:86: error: expected ';' before '}' token 1 | main(){int j=0;while(9>j++){int i=0;while(9>i++)printf("%dx%d=%d\n",j,i,i*j);}exit(0)} | ^ | ;
s112814076
p00000
C
j;main(i){for(;9/i;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);}
main.c:1:1: warning: data definition has no type or storage class 1 | j;main(i){for(;9/i;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);} | ^ main.c:1:1: error: type defaults to 'int' in declaration of 'j' [-Wimplicit-int] main.c:1:3: error: return type defaults to 'int' [-Wimplicit-int] 1 | j;main(i){for(;9/i;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);} | ^~~~ main.c: In function 'main': main.c:1:3: error: type of 'i' defaults to 'int' [-Wimplicit-int] main.c:1:25: error: lvalue required as left operand of assignment 1 | j;main(i){for(;9/i;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);} | ^~ main.c:1:29: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | j;main(i){for(;9/i;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);} | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | j;main(i){for(;9/i;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);} main.c:1:29: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | j;main(i){for(;9/i;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);} | ^~~~~~ main.c:1:29: note: include '<stdio.h>' or provide a declaration of 'printf'
s534669907
p00000
C
main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;returm 0}
main.c:1:1: error: return type defaults to 'int' [-Wimplicit-int] 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;returm 0} | ^~~~ main.c: In function 'main': main.c:1:1: error: type of 'i' defaults to 'int' [-Wimplicit-int] main.c:1:1: error: type of 'j' defaults to 'int' [-Wimplicit-int] main.c:1:28: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;returm 0} | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;returm 0} main.c:1:28: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;returm 0} | ^~~~~~ main.c:1:28: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:1:75: error: 'returm' undeclared (first use in this function) 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;returm 0} | ^~~~~~ main.c:1:75: note: each undeclared identifier is reported only once for each function it appears in main.c:1:81: error: expected ';' before numeric constant 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;returm 0} | ^~ | ;
s351106431
p00000
C
main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;return 0}
main.c:1:1: error: return type defaults to 'int' [-Wimplicit-int] 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;return 0} | ^~~~ main.c: In function 'main': main.c:1:1: error: type of 'i' defaults to 'int' [-Wimplicit-int] main.c:1:1: error: type of 'j' defaults to 'int' [-Wimplicit-int] main.c:1:28: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;return 0} | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;return 0} main.c:1:28: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;return 0} | ^~~~~~ main.c:1:28: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:1:83: error: expected ';' before '}' token 1 | main(i,j){for(j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);i<9?main(i+1,j):0;return 0} | ^ | ;
s891135235
p00000
C
j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);};
main.c:1:1: warning: data definition has no type or storage class 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^ main.c:1:1: error: type defaults to 'int' in declaration of 'j' [-Wimplicit-int] main.c:1:3: error: return type defaults to 'int' [-Wimplicit-int] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~ main.c: In function 'main': main.c:1:3: error: type of 'i' defaults to 'int' [-Wimplicit-int] main.c:1:26: error: implicit declaration of function 'exit' [-Wimplicit-function-declaration] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~ main.c:1:1: note: include '<stdlib.h>' or provide a declaration of 'exit' +++ |+#include <stdlib.h> 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; main.c:1:26: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~ main.c:1:26: note: include '<stdlib.h>' or provide a declaration of 'exit' main.c:1:26: error: void value not ignored as it ought to be 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~~~~ main.c:1:39: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; main.c:1:39: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~~~ main.c:1:39: note: include '<stdio.h>' or provide a declaration of 'printf'
s505847861
p00000
C
j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);};
main.c:1:1: warning: data definition has no type or storage class 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^ main.c:1:1: error: type defaults to 'int' in declaration of 'j' [-Wimplicit-int] main.c:1:3: error: return type defaults to 'int' [-Wimplicit-int] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~ main.c: In function 'main': main.c:1:3: error: type of 'i' defaults to 'int' [-Wimplicit-int] main.c:1:26: error: implicit declaration of function 'exit' [-Wimplicit-function-declaration] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~ main.c:1:1: note: include '<stdlib.h>' or provide a declaration of 'exit' +++ |+#include <stdlib.h> 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; main.c:1:26: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~ main.c:1:26: note: include '<stdlib.h>' or provide a declaration of 'exit' main.c:1:26: error: void value not ignored as it ought to be 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~~~~ main.c:1:39: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; main.c:1:39: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | j;main(i){++j>9&&(i++>8&&exit(0),j=1);printf("%dx%d=%d\n",i,j,i*j);main(i);}; | ^~~~~~ main.c:1:39: note: include '<stdio.h>' or provide a declaration of 'printf'
s812736697
p00000
C
int j;main(i){i<10&&main(printf("%dx%d=%d\n",i,j,++j*i)&&j>8?j=0,++i:i);j=0}
main.c:1:7: error: return type defaults to 'int' [-Wimplicit-int] 1 | int j;main(i){i<10&&main(printf("%dx%d=%d\n",i,j,++j*i)&&j>8?j=0,++i:i);j=0} | ^~~~ main.c: In function 'main': main.c:1:7: error: type of 'i' defaults to 'int' [-Wimplicit-int] main.c:1:26: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | int j;main(i){i<10&&main(printf("%dx%d=%d\n",i,j,++j*i)&&j>8?j=0,++i:i);j=0} | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | int j;main(i){i<10&&main(printf("%dx%d=%d\n",i,j,++j*i)&&j>8?j=0,++i:i);j=0} main.c:1:26: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | int j;main(i){i<10&&main(printf("%dx%d=%d\n",i,j,++j*i)&&j>8?j=0,++i:i);j=0} | ^~~~~~ main.c:1:26: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:1:76: error: expected ';' before '}' token 1 | int j;main(i){i<10&&main(printf("%dx%d=%d\n",i,j,++j*i)&&j>8?j=0,++i:i);j=0} | ^ | ;
s036715608
p00000
C
j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);}
main.c:1:1: warning: data definition has no type or storage class 1 | j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);} | ^ main.c:1:1: error: type defaults to 'int' in declaration of 'j' [-Wimplicit-int] main.c:1:3: error: return type defaults to 'int' [-Wimplicit-int] 1 | j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);} | ^~~~ main.c: In function 'main': main.c:1:3: error: type of 'i' defaults to 'int' [-Wimplicit-int] main.c:1:26: error: lvalue required as left operand of assignment 1 | j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);} | ^~ main.c:1:30: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);} | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);} main.c:1:30: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);} | ^~~~~~ main.c:1:30: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:1:61: error: implicit declaration of function 'exit' [-Wimplicit-function-declaration] 1 | j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);} | ^~~~ main.c:1:1: note: include '<stdlib.h>' or provide a declaration of 'exit' +++ |+#include <stdlib.h> 1 | j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);} main.c:1:61: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] 1 | j;main(i){for(;i<10;i+=!j%=9)printf("%dx%d=%d\n",i,j,++j*i);exit(0);} | ^~~~ main.c:1:61: note: include '<stdlib.h>' or provide a declaration of 'exit'
s363276545
p00000
C
j;main(i){for(;i<10;i+=!(j%=9))printf("%dx%d=%d\n",i,j,++j*i);exit();}
main.c:1:1: warning: data definition has no type or storage class 1 | j;main(i){for(;i<10;i+=!(j%=9))printf("%dx%d=%d\n",i,j,++j*i);exit();} | ^ main.c:1:1: error: type defaults to 'int' in declaration of 'j' [-Wimplicit-int] main.c:1:3: error: return type defaults to 'int' [-Wimplicit-int] 1 | j;main(i){for(;i<10;i+=!(j%=9))printf("%dx%d=%d\n",i,j,++j*i);exit();} | ^~~~ main.c: In function 'main': main.c:1:3: error: type of 'i' defaults to 'int' [-Wimplicit-int] main.c:1:32: error: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 1 | j;main(i){for(;i<10;i+=!(j%=9))printf("%dx%d=%d\n",i,j,++j*i);exit();} | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | j;main(i){for(;i<10;i+=!(j%=9))printf("%dx%d=%d\n",i,j,++j*i);exit();} main.c:1:32: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 1 | j;main(i){for(;i<10;i+=!(j%=9))printf("%dx%d=%d\n",i,j,++j*i);exit();} | ^~~~~~ main.c:1:32: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:1:63: error: implicit declaration of function 'exit' [-Wimplicit-function-declaration] 1 | j;main(i){for(;i<10;i+=!(j%=9))printf("%dx%d=%d\n",i,j,++j*i);exit();} | ^~~~ main.c:1:1: note: include '<stdlib.h>' or provide a declaration of 'exit' +++ |+#include <stdlib.h> 1 | j;main(i){for(;i<10;i+=!(j%=9))printf("%dx%d=%d\n",i,j,++j*i);exit();} main.c:1:63: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] 1 | j;main(i){for(;i<10;i+=!(j%=9))printf("%dx%d=%d\n",i,j,++j*i);exit();} | ^~~~ main.c:1:63: note: include '<stdlib.h>' or provide a declaration of 'exit' main.c:1:63: error: too few arguments to function 'exit'
s280025421
p00000
C
#include<stdio.h> int main(){ int = a, b; for ( a = 1; a<=9 ; a++){ for( b = 1; b<=9 ; b++){ printf("ixj=%d\n", i*j); } }
main.c: In function 'main': main.c:3:7: error: expected identifier or '(' before '=' token 3 | int = a, b; | ^ main.c:4:9: error: 'a' undeclared (first use in this function) 4 | for ( a = 1; a<=9 ; a++){ | ^ main.c:4:9: note: each undeclared identifier is reported only once for each function it appears in main.c:5:10: error: 'b' undeclared (first use in this function) 5 | for( b = 1; b<=9 ; b++){ | ^ main.c:6:26: error: 'i' undeclared (first use in this function) 6 | printf("ixj=%d\n", i*j); | ^ main.c:6:28: error: 'j' undeclared (first use in this function) 6 | printf("ixj=%d\n", i*j); | ^ main.c:8:3: error: expected declaration or statement at end of input 8 | } | ^
s695367724
p00000
C
#include<stdio.h> int main(){ int = a, b; for ( a = 1; a<=9 ; a++){ for( b = 1; b<=9 ; b++){ printf("%dx%d=%d\n", a, b, i*j); } }
main.c: In function 'main': main.c:3:7: error: expected identifier or '(' before '=' token 3 | int = a, b; | ^ main.c:4:9: error: 'a' undeclared (first use in this function) 4 | for ( a = 1; a<=9 ; a++){ | ^ main.c:4:9: note: each undeclared identifier is reported only once for each function it appears in main.c:5:10: error: 'b' undeclared (first use in this function) 5 | for( b = 1; b<=9 ; b++){ | ^ main.c:6:34: error: 'i' undeclared (first use in this function) 6 | printf("%dx%d=%d\n", a, b, i*j); | ^ main.c:6:36: error: 'j' undeclared (first use in this function) 6 | printf("%dx%d=%d\n", a, b, i*j); | ^ main.c:8:3: error: expected declaration or statement at end of input 8 | } | ^