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