5 lines
97 B
C++
5 lines
97 B
C++
#include <iostream>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
std::cout << "Hello" << std::endl;
|
|
}
|