#include<iostream> using namespace std; int main(){ char n; char a; cin>>n; if(n>='A'&&n<='Z'){ a=n+32; cout<<a;}else{ cout<<n;} return 0;}