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