#include <iostream>
#include <string>

int main()
{
    std::string* s = "hello";
    std::cout << "ok" << std::endl;
    std::cout << s->c_str() << std::endl;
    return 0;
}
