# include <stdio.h>

void myStrcpy(char s[], char t[]){
	int x;
	for(x=0;s[x]!='\0';x++){
		t[x]=s[x];
	}
	t[x]='\0';
	return t;
}

int main(){
    int len;
    char s[100];
    char t[100];
    scanf("%s",s);
    myStrcpy(s,t);
    printf("s : %s\nt : %s\n",s,t);
    return 0;
}
