#include <stdio.h>
int x = 'x';
int main(void) {

    printf("%d  %d\n", x, 'x');
    return 0;
}

