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