#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; string S; cin >> N >> S; int nim_sum = 0; int depth = 0, max_depth = 0; for (char c : S) { if (c == '(') { depth++; max_depth = max(max_depth, depth); } else { depth--; if (depth == 0) { // end of one block nim_sum ^= max_depth; max_depth = 0; } } } cout << (nim_sum ? "First" : "Second") << "\n"; return 0; }