#include <stdio.h>
#include <string.h>
int main() {
    char a[20]="hello";
    char b[20];
    strcpy(b,a);
    scanf("%s",a);
    int copy=strcpy("*");
printf("copy string:%d\n",cpy);
return 0;
}