xxxxxxxxxx
#include <iostream>
using namespace std;
int main() {
cout << "Hello Fellow Developers\nLet the fun begin!";
return 0;
}
xxxxxxxxxx
#include<iostream>
using namespace std;
int main(){
cout << "Hello World" << endl;
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>
using namespace std;
int main()
{
cout << "Hello World\n";
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
main() {
cout << "Hello world" << endl;
}
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 <iostream>
using namespace std;
int main()
{
cout << "Hello World";
return 0;
}
xxxxxxxxxx
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}