#include<stdio.h>
int main(){
    int ch;
    scanf("%c",&ch);
    char lower= ch | 32;
    printf("%d",lower);
    return 0;
}