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