#include <iostream>

using namespace std;

int main()
{
    char str[] = "Hello world!";
    cout << str << endl;
    str[1] = 'f';
    cout << str;
    return 0;
}
