#include <iostream>
#include <string>

using namespace std;

int main()
{
	std::string& s = "String";
	
	s = "Other string";
	
	return 0;
}