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