//this is our header, we must include '#include <iostream>' to use cout
#include <iostream>

/* ^ Predefined Identifiers Known as The preprocessor
The preprocessor reads your program before it is compiled 
and only executes those lines beginning with a# symbol. 
Think of the preprocessor as a program that "sets up" your source code for the compiler. */

// main is also a Predefined Identifiers and a function
int main() { // main is the starting point program
	
	// your code goes here
	std::cout << "Hello World!" << std::endl;
	

return 0; //this tells the program if the output is 0 then the program is succesfull

	
}//Leo Garza 12/4/18