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