n, m = map(int, input().split()) a = list(map(int, input().split())) total = 0 for i in range(n): ai = a[i] position = i + 1 if position % 2 == 1: if ai >= 2: contrib = ai + m - 2 else: contrib = 1 - m total += contrib else: if ai >= 2: contrib = ai + m - 2 else: contrib = 1 - m total -= contrib if total > 0: print("First") else: print("Second")