#include <stdio.h>

int main() {
	char *buf;
	printf("%d\n", sizeof(buf = "abcde", "abcde"));
	
	return 0;
}