#include <iostream>
#include <memory>


int main() 
{
	auto a = std::make_unique<int>(0);
	auto b = std::move(a);
	std::cout << *a.get() << std::endl;
}