#include <iostream>
 
int main() {
	int count = 100;
	char *text = new char[count];
	text[0] = 'h';
	text[1] = 'e';
	text[2] = 'l';
	text[3] = 'l';
	text[4] = 'o';
	text[5] = '!';
	text[6] = '\0';
	std::cout << text << std::endl;
	delete[] text;
	return 0;
}