#include <iostream>
#include <memory>
using namespace std;

int main() {
	shared_ptr<int> a { new int(5) };
	cout<< *a << endl;
    shared_ptr<int> b { a };
    *b = 10;
    cout << *a << endl;
	return 0;
}