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