#include using namespace std; bool check(string S){ int w = 0, g = 0; bool last = true; for(char c : S){ if(c == 'W'){ ++w; last = false; } if(c == 'G'){ if(w == 0)return false; --w; ++g; } if(c == 'R'){ if(g == 0)return false; --g; last = true; } } return (g == 0 && last); } int main(){ int T; cin >> T; for(int i=0;i> S; cout << (check(S) ? "possible" : "impossible") << endl; } return 0; }