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