#include using namespace std; int main() { string s; cin >> s; for (auto c : s) cout << (char)tolower(c); cout << endl; return 0; }