/* -*- coding: utf-8 -*- * * 1945.cc: No.1945 Go Push! - yukicoder */ #include #include using namespace std; /* constant */ /* typedef */ /* global variables */ /* subroutines */ /* main */ int main() { int n; scanf("%d", &n); if (n & 1) puts("First"); else puts("Second"); return 0; }