#include <iostream>
using namespace std;

int main() {
	char* name="Hello";
	printf("%s", name);
	return 0;
}