/* hello.cpp -- The most famous program of them all ..
 */

#include <iostream>

int main(void) {
  cout << "Hello World!" << endl;
}
