using System;
public class Program
{
public static void Main()
//AnaLuisa
string p, c;
Console.WriteLine("Please, write a password.");
p =(Console.ReadLine());
Console.WriteLine("Please, confirm the password.");
c =(Console.ReadLine());
while (p !=c)
Console.WriteLine("The second password doesn't match, please try again.");
}
Console.WriteLine("Thanks.");