#include <stdio.h>

int main() {
	// your code goes here
	int *arr={1,2,3,4};
	printf("%d", sizeof(arr)/sizeof(*arr));
	return 0;
}