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