#include #include //using namespace std; typedef std::string str; int main(){ str* x = new std::string("abc"); str y = std::string(13, 'i'); std::cout << 53 << *x << y << "\n";}