#include <stdio.h>

int main(void) {
	// your code goes here
	int a[10];
	printf("%lu\n", sizeof(a));
	return 0;
}
