#include <stdio.h>

void pr_hl_wld(){
	printf("Hello,\n");
	printf("World!\n");
}
int main(void) {
	pr_hl_wld();
	return 0;
}
