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