Write a complete program that prints Hello World to the screen.

LANGUAGE: C++

CHALLENGE:

Write a complete program that prints Hello World to the screen.

SOLUTION:


#include <iostream>
using namespace std;
int main(){
	cout << "Hello World";
}