#include <iostream>

const char* my_text =
R"(Hello,
This is an example of how the text file may look
some information over here
and here
and so on)";

int main()
{
    std::cout << my_text;
    return 0;
}