N = int(input()) S = input() ans = "Second" if (N // 2) % 2 == 0 else "First" print(ans)