#include<iostream>
using namespace std;

void mostrarMensaje(void)
{
	cout << "Soy un mensaje" << endl;
}

int main()
{
	mostrarMensaje();
}