#include <stdio.h>
#include <string.h>

int main() {
	const char* s1="Hello, ";
	const char* s2="World!";
	
	char buf[50];
	
	strcpy(buf, s1);
	strcat(buf, s2);
	
	printf("%s\r\n", buf);
	
	return 0;
}