C++ Hello,World!

#include <Windows.h>
#include <iostream>

using namespace std;

int main(int argc, char* argv[])
{
		cout << "Hello,World!" << endl;

		system("pause");
		return 0;
}