#include <iostream>
#include <string>
usingnamespace std;
int main()
{
string n;
getline(cin, n);
for (int i=0; i<n.size();i++){
if (n[i]=='b'){
// here I should write something which helps me replace every 'b' with 'c' how can I do that? I have just started c++ so I have some problems.
}
}
}