#include <stdio.h>

int main()
 {
    char a=0;
    scanf("%c",&a);
    printf("%d",(int)a);
    return 0;
}