input() d = 0 cnt = 0 for c in input(): if c == '(': d += 1 else: if d: cnt += 1 d -= 1 print('First' if cnt % 2 else 'Second')