// Zig Herzog
// Dec. 1, 2008
// hello.cpp : Program to write a single sentence

#include <iostream>   // To do I/O

using namespace std ;

int main ( ) 
{

        cout << "Hello world, this is xyz speaking\n" << endl ;

}


Zig Herzog; hgn@psu.edu