using System.Numerics; public class Program { public static void Main() { //BigInteger num = BigInteger.Parse(Console.ReadLine() ?? string.Empty); int num = int.Parse(Console.ReadLine() ?? string.Empty); //string[] moji = (Console.ReadLine() ?? string.Empty).Trim().Split(' '); string str = Console.ReadLine() ?? string.Empty; bool d = false; while(str.Length > 0) { int index = str.IndexOf("()"); str = str.Remove(index, 2); if(d) { d = false; } else { d = true; } } if(d) { Console.WriteLine("First"); } else { Console.WriteLine("Second"); } } }