#include<iostream>
using namespace std;
int main()
{
char c;
cin>>c;
cout<<char(c-'A'+'a')<<endl;
//CHAR 把數字轉為字元
return 0;
}