def main(): import sys input = sys.stdin.read().split() N = int(input[0]) M = int(input[1]) A = list(map(int, input[2:2+N])) if M > 1: total = 0 for a in A: if a == 1: total += (1 - M) else: total += (a - 2 + M) print("First" if total > 0 else "Second") else: total = 0 sign = 1 for a in A: contribution = (a - M) * sign total += contribution sign *= -1 print("First" if total > 0 else "Second") if __name__ == "__main__": main()