填空题

下面程序的运行结果是______ #indude <stdio.h> main() {int Y,a; y=2, a=1; while(y--!=-1) {do{a*=y; a++;} while(y--);} printf("%d, %d", a, y);}

【参考答案】

1,-2