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