#include using namespace std; #define FOR(i, n) for(int i = 0; i < (n); i++) #define FORR(x, arr) for(auto& x:arr) #define ITR(x, c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define MEM(a, x) memset(a, x, sizeof(a)) #define ALL(a) a.begin(), a.end() #define UNIQUE(a) a.erase(unique(ALL(a)), a.end()) typedef long long ll; typedef pair P; int n; int main(int argc, char const *argv[]) { ios_base::sync_with_stdio(false); cin >> n; vector v(n); FOR(i, n) { string s; cin >> s; int g = 0; bool ok = true; FORR(x, s) { if (x=='W') continue; else if (x=='G') g++; else { g--; if (g<0) ok = false; } } if (g!=0) ok = false; v[i] = (ok ? "possible" : "impossible"); } FOR(i, n) cout << v[i] << endl; return 0; }