1#include <iostream>
2
3void print_hello()
4{
5    std::cout << "hello" << std::endl;
6}
7