#include <stdlib.h>
#include <stdio.h>

int main (void)
{
	printf("hola mundo\n");
    
	system("pause");
	return 0;
}

