X,Y=map(int,input().split()) if X>Y: X,Y=Y,X if X==1 and Y==1: print("Second") elif X==1: if Y%2==0: print("Second") else: print("First") else: if X%2==Y%2: print("Second") else: print("First")