#include #include #include #include #include int main(void) { char str[14]=""; int cnt[13]={0}; char print[13]=""; scanf("%s",str); for(int i=0;i<14;i++) { char chr=str[i]; cnt[chr-'a']++; } int one=0,two=0; for(int i=0;i<13;i++) { if(cnt[i]==1) { one++; } else if (cnt[i]==2) { two++; } } if(one==13&&two==0) { for(int i=0;i<13;i++) { printf("%c\n",'a'+i); } } else if(one==11&&two==1) { for(int i=0;i<13;i++) { if(cnt[i]==0) { printf("%c\n",'a'+i); } } } else { printf("Impossible"); } }