#include<stdio.h>
int main()
{
    int char A;
    scanf("%d",&A);
    printf("The character is: %d\n",A);
    return 0;
}