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