#include using namespace std; using ll = long long; int main(){ int N; cin >> N; cout << (N % 2 == 0 ? "Second" : "First") << endl; return 0; }