#include <stdio.h>
int main(void)
{
    char test = 0xFF;
    printf("%c\n", test);
    return 0;
}