#include <stdio.h>

int main(void) {
	// your code goes here
    int a=0;
    while(a<=5000)
    { printf("holle\t"); 
      a++;
    }
	return 0;
}
