int a[10][10],i,j,k,m;for(i=0;i<10;i++)for(j=0;j<10;j++)scanf("%d",&a[i][j]);for(k=0;k<10;k++)for(m=0;m<10;m++)printff("%d",a[k][m]);printf("\n");}