#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; int main() { lint T; cin >> T; rep(_, T) { lint a=0, b=0, c=0, x, y, z; cin >> x >> y; a = (x-1)/3; a += (y-1)/3; if (x > 3 && x%3 == 0) b++; if (y > 3 && y%3 == 0) b++; if (!a%2) { if (b == 1) cout << "First" << endl; else cout << "Second" << endl; } else { if (b == 2) cout << "Second" << endl; else cout << "First" << endl; } } }