#include <stdio.h>

int main(void)
{
	int a[10];
	
	printf("%zu\n%zu\n", sizeof a, sizeof &*a);
	
	return 0;
}
