#include using namespace std; using namespace chrono; #if __has_include() #include using namespace atcoder; #endif int main() { int64_t n, m; cin >> n >> m; if (n == 1 || m == 1) { cout << "First" << endl; return 0; } if (n % 2 == 1 || m - 2 == 0) { cout << "First" << endl; return 0; } cout << "Second" << endl; return 0; }