10 lines
142 B
C++
10 lines
142 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
|
|
cout << "hello world!" << endl;
|
|
cout << "hello too!" << endl;
|
|
return 0;
|
|
} |