#include <iostream>#include <memory>using namespace std; void fn(int*y){std::cout << *y;}int main() { auto x = std::make_unique<int>(4); fn(x.get()); // your code goes here return 0;}