//
/* Program #1 - A first C++ program.
Enter this program, then compile and run it.
*/
#include "stdafx.h"
#include
using namespace std;
// main() is where program execution begins.
int main() // sz: so here is where program execution begins!
{
cout << "Hello World! This is Xiaoxue's first C++ program :]";
return 0;
}
