#include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long int ll; int main(){ int x[26]={0}; string s; string abc="abcdefghijklmnopqrstuvwxyz"; cin >> s; for(int i=0; i<13; i++){ for(int j=0; j<26; j++){ if(s[i]==abc[j]){ x[j]++; } } } for(int i=0; i<26; i++){ if(x[i]>2){ cout << "Impossible" << endl; return 0; } if(x[i]>0 && i>13){ cout << "Impossible" << endl; return 0; } } for(int i=0; i<13; i++){ if(x[i]==0){ cout << abc[i] << endl; return 0; } } for(int i=0; i<13; i++){ cout << abc[i] << endl; } return 0; }