#include <stdio.h>

int main()
{
	short *a, b;
	printf("%zu %zu\n", sizeof a, sizeof b);
	return 0;
}