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