/* Helloプログラム */

#include<stdio.h>

main()
{
	int count;
	
	count=1;

	for(  ; count <=10 ; ){
		printf("Hello\n",count);

		count ++;
	}

}