#include <stdio.h>

int main(void) {
	int i;
	i=0;
	while(i<5){
	printf("ritsumeikan\n");
	i++;
	}
	return 0;
}
