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