n, m = map(int, input().split()) if n > 1 and m > 2 and n % 2 == 0: print("Second") else: print("First")