#include <iostream>
using namespace std;

const char* function(const char* text) {
	return "Hello world!";
}

int main() {
	cout << function("Hello world!");
	return 0;
}