#include using namespace std; int main() { // 1. 入力情報取得. string S; cin >> S; // 2. 異なる7つの文字のペアに出来るか?. // 2回出現する文字 … 6個, 1回出現する文字 … 1個 であるかを確認. map m; for(int i = 0; i < S[i]; i++) m[S[i]]++; int one = 0, two = 0; string ans; for(auto &p : m){ if(p.second == 1) one++, ans = p.first; if(p.second == 2) two++; } // 3. 終了. if(one == 1 && two == 6) cout << ans << endl; else cout << "Impossible" << endl; return 0; }