填空题

阅读下面语句,则程序的执行结果是______。
#include "stdio.h"
main()
int a=-1,b=1,k;
if(++a<0)&&!(b--<=0))
printf("%d,%d\n",a,b);
else printf("%d,%d\n",b,a);

【参考答案】

1,0