1000 - Hello World! || URI Online Judge
Problem name: 1000 - Hello World!
Judge: URI Online Judge
Problem link: 1000 - Hello World!
Solution on GitHub: 1000 - Hello World!
[At first you should try to solve the problem on your own. This will increase your thinking power and the ability to solve the program will increase. And if you copy directly from here, you will not learn anything. So my advice is to try to solve it yourself first. If not then check this code. Once you understand the code, do it yourself. Don't copy from here.
Best of luck]
Solution in C++/Cpp
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!\n";
return 0;
}
