#include using namespace std; int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); long long N, M; cin >> N >> M; if(N == 1 || M <= 2) { cout << "First\n"; } else { cout << "Second\n"; } return 0; }