#include <stdio.h>
int num=0;

void mycount(void) {
	num++;
	printf("%d回目の呼び出しです\n",num);
}

int main(void) {
    // your code goes here
	mycount();
	mycount();
	mycount();
	mycount();
	mycount();
	return 0;
}
