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