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