9 lines
91 B
C++
9 lines
91 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
cout << "hello world!" << endl;
|
|
}
|