#include <stdio.h>
#include <string.h>
int main() {
    char a[10]="muthu";
    char b[10];
    scanf("%s%s",a,b);
    int copy=strcpy(b,a);
    printf("copy of the string:%s",length);
}