6 lines
72 B
C++
6 lines
72 B
C++
|
#include <iostream>
|
||
|
|
||
|
int main() {
|
||
|
std::cout << "Hola" << std::endl;
|
||
|
}
|