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