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