#include <stdio.h>
main()
{
    int i;
    for(i=0;i<5;i++)
    {
        int i=10;
        printf("%d" , i);
        i++;
    }
    return 0;
}