#include <iostream>
using namespace std;

struct test{int a;};

int main() {
	// your code goes here
	test* ptr;
	ptr = (test*)20;
	
	long information = reinterpret_cast<long>(ptr);
	std::cout<<information<<std::endl;
	return 0;
}