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