#include<stdio.h>
int main ()
{
    int z;
    scanf (" %c",&z);
    printf("The character is :%c",z);
    return 0;
}