#include <stdio.h>

int main(void) {
	char ch;
    scanf("%c\n",&ch);
    ch=(ch>='A' && ch<='Z')?(ch+32):ch;
    printf("%c\n",ch);
	return 0;
}
