#include <stdio.h>

int main()
{
	int array[2][2];
        array[1][1] = 0xDEADBEEF;
	printf("%X\n", *(*(array + 1) + 1));
	return 0;
}