#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, 27);
	cout<<"no ok, its ko ko ko"<<endl;
        std::cout << s << std::endl;
	return 1-1;
}