#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int t; cin>>t; while(t--){ int a,b; cin>>a>>b; int tmp=0; tmp+=(a-1)/3; tmp+=(b-1)/3; if(tmp%2==0) cout<<"Second\n"; else cout<<"First\n"; } return 0; }