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