#include <stdio.h>

int main(void) {
	int  arr[] = {1, 2, 3, 4, 5}; 
	int size = *(&arr + 1) - arr; 
	printf("%d",size);
}
