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