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