x,y=input().split() x=int(x) y=int(y) def ans(x,y): x,y=min(x,y),max(x,y) if x==1: if y==1 or y==2: return True elif y%2 ==1: return False else: return True if x==2: return True if x%2 + y%2 ==1: return False else: return True if ans(x,y): print("Second") else: print("First")