0
0
0
char a[100],t,w;
int s;
gets(a);
cin>>w>>t;
s=strlen(a);
for(int i=0;i<s;i++)
{
if(a[i]==w)
a[i]=t;
}
puts(a);
return 0;
}
0
0
