N, M = map(int, input().split()) if pow(N, M - 2, 2) == 1: print("First") else: print("Second")