/* -*- coding: utf-8 -*- * * 2481.cc: No.2481 Shiritori - yukicoder */ #include #include using namespace std; /* constant */ /* typedef */ typedef long long ll; /* global variables */ /* subroutines */ /* main */ int main() { ll n, m; scanf("%lld%lld", &n, &m); if (m <= 2 || (n & 1)) puts("First"); else puts("Second"); return 0; }