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