/* Helloプログラム */

#include <stdio.h>
 
main()
{
	while (0) {
		printf("Hello\n");
	}
}