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