k, n = map(int, input().split()) a = list(map(int, input().split())) if a.count(0) % 2 == 0: print('Second') else: print('First')