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