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