:URI online judge 1000 solution
Your first program in any programming language is usually "Hello World!". In this first problem all you have to
.do is print this message on the screen
Input :
This problem has no input.
Output:
You must print the message Hello World! and then the endline as shown below.
EX:
#include <iostream>
using namespace std;
int main() {
cout<< "Hello World!"<<endl;
return 0;
}
********************************************
No comments:
Post a Comment