#include <iostream>
using namespace std;

int main() {
	char* wskaznik = "ala ma kota";
	wskaznik[3] = 'x';
	cout<<wskaznik;
	return 0;
}