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