#include <stdio.h>
 
int main(void) {
	// your code goes here
	int arr[][5]={{0}};
	int **p=arr;
	printf("%d",*p);
	return 0;
}