#include <bits/stdc++.h>

namespace nono {

void solve() {
    long long n, m;
    std::cin >> n >> m;
    bool first = false;
    if (m <= 2) {
        first = true;
    } else if (n % 2 == 1) {
        first = true;
    }
    if (first) {
        std::cout << "First" << std::endl;
    } else {
        std::cout << "Second" << std::endl;
    }
}

}  //  namespace nono

int main() {
    std::cin.tie(0)->sync_with_stdio(false);
    std::cout << std::fixed << std::setprecision(15);

    int t = 1;
    while (t--) nono::solve();
}