from collections import deque N = int(input()) S = input() q = deque() cnt = 0 for s in S: if q: if q[-1] == "(" and s == ")": cnt += 1 else: q.append(s) ans = "First" if cnt % 2 != 0 else "Second" print(ans)