#include #include #include #include using namespace std; class GoodString { int t; public: GoodString(int x) { t=x; } void newstring(string str) { for(int i=0;i>n; GoodString ob(n); string str; getchar(); getline(cin,str); ob.newstring(str); return 0; }