//JohamBarberenaMachorro 3°C TPR
using System;
public class Program
{
public static void Main()
int N1, N2;
System.Console.WriteLine(" Introduce el N1");
N1 = int.Parse (Console.ReadLine());
System.Console.WriteLine(" Introduce el N2 ");
N2= int.Parse(Console.ReadLine());
int Resultado= N1 + N2;
Console.WriteLine( Resultado );
Console.ReadLine();
}