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