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