using System;
public class Program
{
public static void Main()
//Damaris Castrellon
int b;
string a;
b=1;
Console.WriteLine("Try to guess my name. ");
a = Console.ReadLine();
while (a!="Damaris"&&a!="DAMARIS"&&a!="damaris")
b++;
}
if (b==1)
Console.WriteLine("It took you 1 try to guess.");
else
Console.WriteLine("It took you "+b+" tries to guess.");