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