/* The simple Hello World application.  */

#include <iostream>

int main (void)
{
  std::cout << "Hello World" << std::endl;
  return 0;
}
