using System;
public class Program
{
public static void Main()
{int a = 7;
int b = 5;
int SUM = a + b;
Console.WriteLine(SUM);
//ESCRIBE UN PROGRAMA QUE IMPRIMA LA SUMA DE 2 NUMEROS
//NECESITAMOS 2 VARIABLES DE TIPO int
//PISTA: [tipo de variable] [nombre] recuerda asignarle un valor con el operador '='
//RECUERDA QUE TODA LINEA DE CODIGO DEBE TERMINAR CON ';'
//PARA IMPRIMIR TEXTO A LA CONSOLA USAMOS Console.WriteLine();
}