#include <stdio.h>

int myStrcpy(char s[],char t[]){
	int i;
	for(i=0;s[i]!='\0';i++){
		t[i]=s[i];//tにsを代入
	}
	t[i]='\0';//tの文字列の最後に終端文字を入れる
	return;
}
int main(void) {
	// your code goes here
	char s[100];
	char t[100];
	scanf("%s",s);//入力,sは文字列なので&がいらない,文字の場合は必要
	int x=myStrcpy(s,t);
	printf("s:%s\nt:%d\n",s,x);//結果を表示,s,tにはそれぞれ同じ文字列が入る
	return 0;
}
