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