#include <stdio.h>//第０講演習 01-4
void printHW(){
	int i;
	for(i=0;i<10;i++){
		printf("Hello,World!\n");
	}
}
int main() {
	printHW();
	return 0;
}
