master
Can202 2021-10-03 14:59:33 -03:00
parent bd4ad8fa14
commit de4f3eb31e
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,6 @@
#include <stdio.h>
#include <iostream>
using namespace std;
int main() {
printf("Hola Mundo");
cout << "Hola Mundo" << endl;
return 0;
}

View File

@ -1,5 +1,5 @@
#include <stdio.h>
int main() {
printf("Hola Mundo");
printf("Hola Mundo\n");
return 0;
}