#include <stdio.h>
int main()
{
    for (int i = 9; i < 1;) printf("%d", i);
    printf("end of loop");
    return 0;
}