/* Helloプログラム */

#include <stdio.h>
 
main()
{
	int count ;
	
	for ( count = 1 ; count <= 10 ; count ++ ) {
	  printf("Hello\n");
	}
	
}