#include <iostream> using namespace std; int main() { int x; cin >> x; int *p=new int(10); *p=x; cout<<*p<<endl; delete p; return 0; }