#include <iostream>
using namespace std;

int main() {

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

}