using System;//MÓDULOS NECESARIOS
public class Program
{
public static void Main()
//La funcion Main es una funcion especial que llama automáticamente cuando se ejecuta un programa de consola
//Here you need to ensure to enter the code required to display the required information in the console application.
Console.WriteLine("Hola Mario, te extraño");//Esta linea funciona para escribir en la consola
/*Console. ReadKey() (this is for Visual Studio) We then use the Console. ReadKey() method to read any key from the console.
By entering this line of code, the program will wait and not exit immediately. The program will wait for the user to enter any key
before finally exiting. If you don't include this statement in code, the program will exit as soon as it is run*/
}