#ifndef __HELLO_H__
#define __HELLO_H__

#include <iostream>

void hello(){
  std::cout << "Hello" << std::endl;
}

#endif
