#include <iostream>
using namespace std;

static string sHello("Hello");
static string sKdok("kdok123");

void tell(string* str2) {
    str2 = &sKdok;
}

void tellByRef(string* &str3) {
    str3 = &sKdok;
}

int main() {
    string* str1 = &sHello;
    cout << *str1 << endl;
    tell(str1);
    cout << *str1 << endl;
    tellByRef(str1);
    cout << *str1 << endl;
	
    return 0;
}
