/*
 * Second C++ program with strings and using directive for std namespace
 * CSE 374 C++ demo  hp
 */
 
#include <iostream>
#include <string>
using namespace std;

int main(int argc, char** argv) {
  string greeting("Hello");
  cout << greeting + " World" << endl;
  return 0;
}