#include <stdio.h>
void hello(){
	int i;
	for(i=0; i<10; i++){
		printf("Hello,World!\n");
	}
}
int main(void) {
	hello();
	return 0;
}
