#include using namespace std; int main(){ long long N, M; cin >> N >> M; if (N % 2 == 0){ if (M <= 2){ cout << "First" << endl; } else { cout << "Second" << endl; } } else { if (M == 1){ cout << "First" << endl; } else { if (N % 4 == 1){ cout << "First" << endl; } else { cout << "Second" << endl; } } } }