#yuki726 y,x=map(int,raw_input().split()) res=(y%2)^(x%2) if y==1: res^=1 if x==1: res^=1 if y==2 or x==2: res=0 print 'Second' if res==0 else 'First'