#include using namespace std; int main(){ int y, x; cin >> y >> x; bool ans = (y % 2) ^ (x % 2); if(y == 1) ans ^= 1; if(x == 1) ans ^= 1; if(x == 2 || y == 2) ans = false; cout << (ans ? "First" : "Second") << endl; }