function temp(){
  a=[2][2];
  b={1,1;3,1};
  a[0][0]=2;
  a[0][1]=2;
  a[1][0]=2;
  a[1][1]=2;
  a+.b;
  print(a[1][0]);
  return 0;
}

i=temp();
