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