using System;
public class Program
{
public static void Main()
string answer;
string guess;
int count =0;
answer = "mobile";
do
Console.WriteLine("Please guess the word of the day.");
guess = Console.ReadLine();
count = count +1;
}
while(guess!=answer);
if (guess == answer)
Console.WriteLine("Winner!");
Console.WriteLine("No of tries:" + count);