#include // #include using namespace std; using namespace numbers; int main(){ cin.tie(0)->sync_with_stdio(0); cin.exceptions(ios::badbit | ios::failbit); long long n, m; cin >> n >> m; if(m == 1){ cout << "First\n"; return 0; } m >= 3 && n & 1 || m == 2 ? cout << "First\n" : cout << "Second\n"; return 0; } /* */ //////////////////////////////////////////////////////////////////////////////////////// // // // Coded by Aeren // // // ////////////////////////////////////////////////////////////////////////////////////////