/* Name: Hello Copyright: Author: CIS 1.5 Date: 05/07/06 17:21 Description: Our first program */ #include #include using namespace std; int main(int argc, char *argv[]) { cout << "Hello" << endl; system("PAUSE"); return EXIT_SUCCESS; }