#include <stdio.h>

int main(void) {
	char *p[5];
	int *c[5];
	printf("%d %d",sizeof(p),sizeof(c));
	return 0;
}
