#include<stdio.h>
int main()
{
char ch;
scanf("%c",&ch);
ch= (ch >='A'&& ch <='Z'){ch =ch+32;
}
Printf("%d",ch);
return 0;
}