public static void Main()
string firstPlayer = Console.ReadLine();
int rounds = int.Parse(Console.ReadLine());
int points = int.Parse(Console.ReadLine());
string isSuccess = Console.ReadLine();
int firstPlayerScore = 0;
int secondPlayerScore = 0;
string secondPlayer = String.Empty;
if ("Simeon" == firstPlayer)
else if ("Nakov" == firstPlayer)
for (int i = 1; i <= rounds; i++)
if (isSuccess == "sucess" && firstPlayerScore<500 && firstPlayerScore + points <=500)
firstPlayerScore += points;
if (firstPlayerScore==500)
Console.WriteLine(firstPlayer);
Console.WriteLine(secondPlayerScore);
points = int.Parse(Console.ReadLine());
isSuccess = Console.ReadLine();
if (isSuccess == "sucess" && secondPlayerScore < 500 && secondPlayerScore + points <=500 )
secondPlayerScore += points;
if (secondPlayerScore==500)
Console.WriteLine(secondPlayer);
Console.WriteLine(firstPlayerScore);
points = int.Parse(Console.ReadLine());
isSuccess = Console.ReadLine();
if (isSuccess == "sucess" && secondPlayerScore < 500 && secondPlayerScore + points <=500)
secondPlayerScore += points;
if (secondPlayerScore == 500)
Console.WriteLine(secondPlayer);
Console.WriteLine(firstPlayerScore);
points = int.Parse(Console.ReadLine());
isSuccess = Console.ReadLine();
if (isSuccess == "sucess" && firstPlayerScore < 500 && firstPlayerScore + points <=500 )
firstPlayerScore += points;
if (firstPlayerScore == 500)
Console.WriteLine(firstPlayer);
Console.WriteLine(secondPlayerScore);
if (firstPlayerScore < 500 && secondPlayerScore < 500 && firstPlayerScore == secondPlayerScore)
Console.WriteLine("DRAW");
Console.WriteLine(firstPlayerScore);
if (firstPlayerScore < 500 && secondPlayerScore < 500 && firstPlayerScore > secondPlayerScore)
Console.WriteLine(firstPlayer);
Console.WriteLine(firstPlayerScore - secondPlayerScore);
else if (firstPlayerScore < 500 && secondPlayerScore < 500 && secondPlayerScore > firstPlayerScore)
Console.WriteLine(secondPlayer);
Console.WriteLine(secondPlayerScore - firstPlayerScore);