#include using namespace std; int main() { string matn; char replacement; int len, index; cin >> len; cin >> matn; cin >> index >> replacement; matn[index] = replacement; cout << matn << endl; }