#include <iostream>
#include <string>

int main() {
    std::string content = R"(

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>.

)";

    std::cout << content;

    return 0;
}