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