using System;
public class Program
{
public static void Main()
//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();
int a = 5;
int b = 7;
int Suma = a + b;
Console.WriteLine(Suma);
}