#include "mystring.h"
#include <iostream>
using namespace std;
int main()
{
MyString s1("disen");
cout << s1 + ",lucy" << endl;
return 0;
}