# include <stdio.h>
void myStrcpy(char s[], char t[]){
int i=0;
while(s[i]!='\0'){
t[i]=s[i];
i++;
}
}
int main(){
int len;
char s[100];
char t[100];
myStrcpy(s,t);
printf("s : %s\nt : %s\n",s
,t
); return 0;
}
IyBpbmNsdWRlIDxzdGRpby5oPgoKdm9pZCBteVN0cmNweShjaGFyIHNbXSwgY2hhciB0W10pewppbnQgaT0wOwp3aGlsZShzW2ldIT0nXDAnKXsKCXRbaV09c1tpXTsKCWkrKzsKfQoKfQoKaW50IG1haW4oKXsKICAgIGludCBsZW47CiAgICBjaGFyIHNbMTAwXTsKICAgIGNoYXIgdFsxMDBdOwogICAgc2NhbmYoIiVzIixzKTsKICAgIG15U3RyY3B5KHMsdCk7CiAgICBwcmludGYoInMgOiAlc1xudCA6ICVzXG4iLHMsdCk7CiAgICByZXR1cm4gMDsKfQo=