N,M = map(int, input().split()) if N==1 or M<=2: print('First') elif N%2==0: print('Second') else: print('First')