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