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

class Hello {
	public:
	string hello();
	
};

string Hello::hello() {
	return "hello";
}


int main() {
	
	Hello h;
  	cout << h.hello();
	
	return 0;
}