9 lines
87 B
C++
9 lines
87 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
cout << "Hello world\n";
|
|
}
|