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