#include
void main()
{
int a[4][3],s=0;
for(int i=0;i<4;i++)
for(int j=0;j<3;j++)
scanf("%d",&a[i][j]);
s+=a[i][j];
}
printf("所有元素的和为%d\n",s);