6 lines
88 B
C++
6 lines
88 B
C++
#include <iosteam>
|
|
|
|
int main() {
|
|
std::cout << "Hello World" << std::endl;
|
|
return 0;
|
|
}
|