#include <stdio.h>
#include <string.h>
int main() {
char myStr[20] = "Hello";
strncat(myStr, " World!", 5);
printf("%s", myStr);
return 0;
}