#include using namespace std; int main() { long long N, M; cin >> N >> M; if (M % N == 0){ cout << "First" << endl; } else { cout << "Second" << endl; } }