#include <iostream>
using namespace std;
void hello() { 
    cout << hello << endl;
}
int main () {
   hello();
}
    
        
#include <iostream>
using namespace std;
void hello();
int main () {
   hello();
}
void hello() { 
    cout << hello << endl;
}