#include <iostream>

using namespace std;

void foo()
{
	cout << "hello world!" << endl;
}

int main()
{
	foo();
	(&foo)();
	(*foo)();
	(******************foo)();
	return 0;
}