#include <stdio.h>
#include<string.h>
int main(void) {
	// your code goes here
	char str[20];
	str[20]= "Hello world";
	char name[20];
	strcpy(name,str);
	printf("%s",name);
	return 0;
}
