import java.util.*; public class Solution { public static void main(String[] args) { Scanner scan=new Scanner(System.in); int a[]={4,9,2,3,5,7,8,1,6}; int[] b=new int[9]; for(int i=0;i<9;i++) { b[i]=scan.nextInt(); } ArrayList arrayList=new ArrayList(); int minchange=9; int k=0; int change=0; while(k<7) { int[] temp= new int[9]; change=0; for(int i=0;i<9;i++) { change+=Math.abs(b[i]-a[i]); } arrayList.add(change); if(k==3) { temp[0]=a[2]; temp[1]=a[1]; temp[2]=a[0]; temp[3]=a[5]; temp[4]=a[4]; temp[5]=a[3]; temp[6]=a[8]; temp[7]=a[7]; temp[8]=a[6]; } else { temp[0]=a[6]; temp[1]=a[3]; temp[2]=a[0]; temp[3]=a[7]; temp[4]=a[4]; temp[5]=a[1]; temp[6]=a[8]; temp[7]=a[5]; temp[8]=a[2]; } a=temp; k++; } scan.close(); Collections.sort(arrayList); System.out.println(arrayList.get(0)); } }