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