#include <stdio.h>

int main(void) {
	// your code goes here
	char a[] = "";
	printf("%d", sizeof(a));
	return 0;
}
