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