#include <iostream>
using namespace std;

void helloWorld(void);

int main()
{
    helloWorld();

    return 0;
}

void helloWorld(void)
{
    cout << "Hello, world!" << endl;
}