#include <stdio.h>

int main()
{
    char ch = 0;
    //输入
    ch = getchar();
    //输出
    printf("%d\n", ch);

    return 0;
}