#include <stdio.h>
int main() {
    chhar ch;
    scanf("%c", &ch);
    printf("the character is: %c\n", ch);
    return 0;
}