#include <iostream>
#include <string>
 
using namespace std;
 
int main(void)
{
        cout<<"ok ok ok"<<endl;
        char arr[] = "All's well that ends well";
        char rak[] = "we after end of string kokoko";
        std::string s(arr, 26);
        cout<<"if you see, thats right"<<endl;
        std::cout << s << std::endl;
        return 1-1;
}