while.c:


main()
{
    int x = 0;

    while (x > 0)
    {
        printf("%d\n", x);
        x = x - 1;
    }
}