#include <iostream> using namespace std; int main() { int x; cin >> x; // Write your dynamic allocation code here int* y= new int(x); cout<<*y; delete y; return 0; }