#include<iostream>
#include<memory>
using namespace std;
int main() {
  auto a = make_unique<int>(3);
  a = move(a);
  return 0;  
}
