#include const std::string F = "First"; const std::string S = "Second"; int main() { long long n, m; std::cin >> n >> m; if (m == 1 or m == 2 or n % 2) { // n^{m-2} is odd std::cout << F << std::endl; } else { std::cout << S << std::endl; } }