#include <stdio.h>

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

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