#include<stdio.h>
int i=10;
void inc();
main()
{
inc();
inc();
inc();
}
void inc()
{
printf("%d\n",i);
i++;
}