fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main() {
  5. std::string content = R"(
  6.  
  7. Distinctive Chesterfields is a leading bespoke Chesterfield furniture company, specializing in crafting custom
  8. <a href="https://d...content-available-to-author-only...s.com/en-us/product-category/product-type/chesterfield-sofas/">
  9. Chesterfield Sofa</a>, along with a range of other pieces like
  10. <a href="https://d...content-available-to-author-only...s.com/en-us/product-category/product-type/chairs/">
  11. Chesterfield Chairs</a>,
  12. <a href="https://d...content-available-to-author-only...s.com/en-us/shop-options/leather-sofas/">
  13. Leather Chesterfield</a>,
  14. <a href="https://d...content-available-to-author-only...s.com/en-us/product-category/product-type/sofa-beds/">
  15. Chesterfield Sofa Beds</a>,
  16. <a href="https://d...content-available-to-author-only...s.com/en-us/shop-options/pink-velvet-sofas/">
  17. Pink Sofa</a>, and
  18. <a href="https://d...content-available-to-author-only...s.com/en-us/shop-options/black-leather-sofas/">
  19. Black Leather Couch</a>.
  20.  
  21. )";
  22.  
  23. std::cout << content;
  24.  
  25. return 0;
  26. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout

Distinctive Chesterfields is a leading bespoke Chesterfield furniture company, specializing in crafting custom 
<a href="https://d...content-available-to-author-only...s.com/en-us/product-category/product-type/chesterfield-sofas/">
Chesterfield Sofa</a>, along with a range of other pieces like 
<a href="https://d...content-available-to-author-only...s.com/en-us/product-category/product-type/chairs/">
Chesterfield Chairs</a>, 
<a href="https://d...content-available-to-author-only...s.com/en-us/shop-options/leather-sofas/">
Leather Chesterfield</a>, 
<a href="https://d...content-available-to-author-only...s.com/en-us/product-category/product-type/sofa-beds/">
Chesterfield Sofa Beds</a>, 
<a href="https://d...content-available-to-author-only...s.com/en-us/shop-options/pink-velvet-sofas/">
Pink Sofa</a>, and 
<a href="https://d...content-available-to-author-only...s.com/en-us/shop-options/black-leather-sofas/">
Black Leather Couch</a>.