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