xxxxxxxxxx
#include <iostream>
int main(){
std::cout <<"Hello World" << std::endl;
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
// Main() function: where the execution of program begins
int main()
{
// prints hello world
cout << "Hello World";
return 0;
}
xxxxxxxxxx
#include <iostream>
int main(){
std::cout << "Hello world" << std::endl;
return 0;
}
xxxxxxxxxx
#include "iostream"
int main(){
std::cout << "hello world" << "\n";
return 0;
}
xxxxxxxxxx
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello world";
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
int main(){
cout << "Hello World" << endl;
return 0;
}
xxxxxxxxxx
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"HELLO WORLD"<<endl;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world!";
return 0;
}