#include<stdio.h>
int main()
{
    char a;
    scanf("%c",&a);
    printf("The ASCII value of %c is %c\n",a);
    return 0;
}