#832. for双循环

for双循环

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

int k=0,i,j;
for(i=0;i<5;i++)
    for(j=0;j<3;j++)
       k=k+1 ;
printf(“%d\n”,k);