6 lines
74 B
C++
6 lines
74 B
C++
|
#include <iostream>
|
||
|
int main() {
|
||
|
std::cout << "Hello!\n";
|
||
|
return 0;
|
||
|
}
|