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