" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <conio.h>
using namespace std;
int main()
{
string tekst;
cin>>tekst;
for(int i=0;i<tekst.size();i++)
{
if(tekst[i]=='a')tekst[i]='*';
}
cout<<tekst;
getch();
}