#include<stdio.h>
main(){
int x[2][3][4],i,j,k;
for(i=0;i<2;i++){
for(j=0;j<3;i++){
for(k=0;k<4;k++){
x[i][j][k]=1;
}
}
}
}