#include #include #include #include #include using namespace std; int main() { int a[8][9]={{8,1,6,3,5,7,4,9,2},{6,1,8,7,5,3,2,9,4},{4,9,2,3,5,7,8,1,6},{2,9,4,7,5,3,6,1,8},{8,3,4,1,5,9,6,7,2},{4,3,8,9,5,1,2,7,6},{6,7,2,1,5,9,8,3,4},{2,7,6,9,5,1,4,3,8}}; int sqr[3][3], sol[8],i,j,k,l,cnt,m[9],temp; for(i=0;i<3;i++) { for(j=0;j<3;j++) { cin>>sqr[i][j]; } } k=0; for(i=0;i<3;i++) { for(j=0;j<3;j++) { m[k]=sqr[i][j]; k++; } } k=cnt=l=temp=0; for(i=0;i<8;i++) { l=cnt=0; for(j=0;j<9;j++) { temp=m[l]-a[i][j]; if(temp < 0) temp=temp * (-1); cnt=cnt+temp; l++; } sol[k]=cnt; k++; } temp=sol[0]; for(i=1;i<8;i++) { if(temp > sol[i]) temp=sol[i]; } cout<