n, m = map(int, input().split()) if m <= 2 or n % 2: print('First') else: print('Second')