#include<stdio.h>
main()
{
int a[3][2]={{1,2},{3,4},{5,6}),i,j,s=0;
for(i=1;i<3;i++)
for(j=0;j<2;j++)
s+=a[i][j];
print f("%d ",s);
}