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