Y,X = map(int,input().split()) if X <= 2 and Y <= 2: print("Second") exit() if (X + Y) % 2 == 0: print("Second") else: print("First")