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