#include <iostream>
#include <string>

using namespace std;

class Test{
public:
    string str;

    Test(const string& str) : str(str){
        cout << this->str << endl;
    }
};

int main() {
    Test t ("test");
    return 0;
}
