#include <iostream>
#include <string>
using namespace std;

class Print {
private:
	string text;
public:
	void setText(string t);
	void drucke();
	void drucke(string str);
};

void Print::setText(string t)
{
	text = t;
}

void Print::drucke() {
	cout << text;
}

void Print::drucke(string str)
{
	cout << str;
}

Print aus;

int main() {
	Print *a = new Print();
	a->drucke("test");
	aus.setText("Hello World\n");
	aus.drucke();
	aus.drucke("Hello Bulme\n");
	return 0;
}
