#include #include #include using namespace std; using ll = long long; #include int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int h,w; cin>>h>>w; vector s(h); for(int i = 0;i>s[i]; int now = 0; for(int i = 0;i0) g = 3 - g; g %= 3; now ^= g; } if(now==0) cout<<"Second\n"; else cout<<"First\n"; }