//============================================================================
// Name        : HelloWorld.cpp
// Author      : me
// Version     :
// Copyright   : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
// Include this if you are using visual studios (prior to VS 2017 it used to be stdafx now called pch (precompile header)
// #include "pch.h"
#include <iostream>
using namespace std;
// #include <math.h>

int main() {
	cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!;
	// cout << M_PI;
	cin.get();
	return 0;
}
