#include <stdio.h>

int main(void)
{
	char c = 0x81;
	printf("%x\n", c);
	printf("%x\n", (unsigned char)c);
	return 0;
}
