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