1#include <iostream>
2
3
4int main(){
5 std::cout <<"Hello World" << std::endl;
6 return 0;
7}
8
1#include<iostream>
2using namespace std;
3
4int main(){
5
6 cout << "Hello World" << endl;
7
8 return 0;
9}
1#include <iostream>
2using namespace std;
3
4int main()
5{
6 cout << "Hello World\n";
7 return 0;
8}
1#include<iostream>
2using std::cout;
3
4int main(){
5 cout << "Hello World";
6 return 0;
7}
1#include <bits/stdc++.h>
2
3using namespace std;
4
5int main(){
6 cout << "hello world! \n";
7} //code by goukl aakash
1
2#include<iostream>
3
4using namespace std;
5
6int main()
7{
8 cout<<"Hello World";
9
10 return 0;
11}