#include <iostream>

void go_do_treestuff();

int main()
{
   std::cout << "welcome" << std::endl;
   go_do_treestuff();
   std::cout << "finished" << std::endl;
}
