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