// Better design
#include <stdio.h>
int main(void)
{
int i = 3;
while (i > 3)
printf("%i\n", i);
i--;
}