#include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); long N,M; cin>>N>>M; if(M==1) { cout<<"First\n"; return 0; } //N^{M-2} is odd <=> First if(M==2||N%2==1)cout<<"First\n"; else cout<<"Second\n"; }