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