It's time to put your hacking skills to the test! You've been called upon to help crack enemy codes in the current war on... something or another. Anyway, the point is that you have discovered the encryption technique used by the enemy; it is quite simple, and proceeds as follows. Note that all strings contain only uppercase letters of the alphabet.
As an example, consider the encryption of the string "STANFORD" using the key "ACM":
STA NFORD
+ ACM SVMFA
----------
SVM FAAWD
Knowing this, you are well on your way to being able to read the enemy's communications. Luckily, you also have several pairs of plaintexts and ciphertexts that your team recovered, all of which are known to be encrypted with the same key. Help find the key that the enemy is using. Because the key is uniquely determined by the longest recovered plaintext, the shortest valid key is unique.
The input consists of multiple test cases. Each test case begins with a line containing a single integer N (1≤N≤100), the number of plaintext/ciphertext pairs you will receive. Each of the next N lines contains two strings P and C, the plaintext and the ciphertext respectively. P and C contain only uppercase letters (A-Z) and have the same length (at most 100 characters). The input terminates with a line containing N=0, which is not processed.
For each test case, print a single line containing the shortest possible key, or Impossible if no key could have produced all of the given encryptions.