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