#include <stdio.h>
int main()
{
int i;
for(i = 0; i ? 0 : i+1; i++)
printf("%d\n", i);
return 0;
}
References: C From Theory