#include using namespace std; int main(){ string S; cin >> S; int N = S.size(); for (int i = 0; i < N; i++){ S[i] = tolower(S[i]); } cout << S << endl; }