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