#825. for双循环

for双循环

以下程序段的输出结果是({{ input(1) }} )

int i,j,m=0;

for (i=1;i<=15;i+=4)
    for (j=3;j<=19;j+=4)  m++;
printf(“%d\n”,m);