Hello World in C++

 #include <iostream>

#include <string>
using namespace std;

int main(){
    cout<<"Hello World";
    return 0;
}

Comments