// JESUS GUILLERMO DE LA CRUZ BETANCOURT
// 7 DE OCTUBRE DL 2020
using System;
public class Program
{
public static void Main()
string N1,N2;
Console.WriteLine("Escribe el primer nombre");
N1=Console.ReadLine();
Console.WriteLine("Escribe el segundo nombre ");
N2= Console.ReadLine();
if(N1== N2)
Console.WriteLine("Los nombres son iguales ");
}
else
Console.WriteLine("Los nombres NO son iguales" );