#include <iostream>
using namespace std;

void hi();    // This function is now declared.

int main() {
    hi();
    return 0;
}

void hi() {
    cout << "hi" << endl;
}