/* Helloプログラム */

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