填空题

下列程序的输出结果是______。
main()
int i=0,a=0;
while(1<20)
for(;;)
if((i%10)==0)break;
else i--;
i+=11;
a+=i;

printf("%d\n" ,a);

【参考答案】

32