#include<string.h>

int main(int argc, char **argv){
	char buf[256];
     /* In case you have solved it, 
        are you also able to solve 
        it if the size of buf is really
        small like 8?
     */

	strcpy(buf, argv[1]);
}

