#include using namespace std; #define MOD 998244353LL using ll = long long; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; string S; cin >> S; assert(N == S.size()); cout << "First" << endl; }