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