=================↵
#include <iostream>↵
using namespace std;↵
↵
int main(){↵
cout<<"hello world";↵
return 0;↵
}↵
↵
↵
↵
/*#include <iostream> is a header file library that helps with input and output objects in C++ language.↵
↵
Using namespace std use for the objects and variables from the standard library.↵
↵
*/↵
↵