using System;
public class Program
{
public static void Main()
string nombre1 = "juan";
string nombre2 = "maria";
if (nombre1 == nombre2)
System.Console.WriteLine("los nombres son iguales");
}
else
System.Console.WriteLine("los nombres son diferentes");