#include <stdio.h>//第０講　００－０

void hoge (){
	printf("Hwllo\n");
	printf("World!\n");
}
int main() {
	hoge();
	return 0;
}
