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