写出以下程序的运行结果:
#include<stdio.h>
void main()
{
int i,s,j,a[3][2]={0,1,2,3,4,5};
for(i=0;i<2;i++){
for(s=0,j=0;j<3;j++)
s+=a[j][i];
printf("%d#",s);
}
}