import sys input = sys.stdin.readline N,M=map(int,input().split()) if M<=N: print("First") else: print("Second")