#include<bits/stdc++.h> using namespace std; int main(){ char a; cin>>a; if(a>='A'&&a<='Z'){ a=char(int(a)+32); } cout<<a<<endl; return 0; }