10 lines
142 B
C++
10 lines
142 B
C++
#include <iostream>
|
|
#include <stdlib.h>
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char ** argv){
|
|
cout << "hello World/n";
|
|
return 0;
|
|
}
|