#include<bits/stdc++.h>
using namespace std;
int main(){
    char c;
    while(cin>>c){
        cout<<char(c+32)<<endl;
    }
    return 0;
}