#include <iostream>
using namespace std;

int main() {

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

}