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