N = int(input()) S = input() def is_balanced(s: str) -> bool: d = 0 for c in S: if c == '(': d += 1 elif c == ')': if d == 0: return False d -= 1 return d == 0 if is_balanced(S): print('First') else: print('Second')