#include <stdlib.h>

int main(void)
{
	int **x;
	x = malloc(sizeof(**x) * 10 * 10);
	x[5][5] = 48;
	free(x);
	return 0;
}
