#include <stdio.h>

int main(int argc, char **argv) {
	char *buf = malloc(10);
	strcpy(buf, argv[1]);
	return 0;
}
