Facebook
From Ân, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 137
  1. #include<iostream>
  2. #include<vector>
  3. #include<string>
  4. #include<sstream>
  5. #include<cctype>
  6.  
  7. using namespace std;
  8.  
  9.  
  10. int main()
  11. {
  12.     string s;
  13.     getline(cin,s);
  14.    
  15.     for(int i=0;i<s.size();i++)
  16.     {
  17.         cout<<(char)tolower(s[i]);
  18.     }
  19.        
  20.    
  21.    
  22.     return 0;
  23. }