fork download
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. #include <regex>
  5. #include <iostream>
  6. using namespace std;
  7.  
  8. int main() {
  9. string word;
  10. regex re(R"(\w)");
  11. getline(cin,word);
  12. smatch Word;
  13. if (regex_search(word,Word,re)) {
  14. cout<<Word.str()<<"\n";
  15. }
  16.  
  17.  
  18. /*if (fin.eof()){
  19.   i++;
  20.   fin.clear();
  21.   fin.seekg(0);
  22.   }*/
  23.  
  24.  
  25. return 0;
  26. }
  27.  
  28.  
  29.  
Success #stdin #stdout 0.01s 5272KB
stdin
ABC CDG EFT GHF
stdout
A