#include <stdio.h>
int main(void) {
	char *p = "\x6e\x43\xff\xffhogehuga";
	printf( "%d\n", *p);
	return 0;
}
