/*
 * First C++ program
 * CSE 374 C++ demo  hp
 */
 
#include <iostream>

int main(int argc, char** argv) {
  // Use standard output stream cout
  // and operator << to send "Hello World”
  // and a newline (end line) to stdout
  std::cout << "Hello World" << std::endl;
  return 0;
}