#include <iostream>
using namespace std;

int main() {

	char * pt;
	pt = new('x');
	cout << *static_cast<int*>(pt);
	return 0;

}