DWITE
November 2012
Problem 2
Word Arithmetic

Tommy always gets really bored during his English class. However, Tommy loves Math! He spends most of his free time adding two numbers together (it's actually really exciting!). One day he came up with a brilliant idea to both cure his boredom in English class, and to not get caught by his teacher: add words together! The way Tommy adds to words together is exactly how he would add two numbers:

For example, Z + Z = BY (since Z + Z = 50, and 50 modulo 26 is 24, which is Y, and the carry is the quotient you get when you divide 50 by 26, i.e. 1, which represents B).

Note that you don't want the answer to have any leading A (as that's equivalent to having leading 0s).

The input file DATA2.txt will contain 5 test cases. Each case a line with two words, W1 and W2, separated by a single space. Every word is at least 1 letter and no more than 254, made up of only upper case letters.

The output file OUT2.txt will contain 5 lines of output. Each a single word representing W1 + W2, spelled in upper case.

Sample Input (first 3 shown):
 
CAT DOG
MOM DAD
ABA A
		        
Sample Output (first 3 shown):
 
FOZ
POP
BA
		        

Note on 3rd case: words can be of different length. A = 0 so ABA + 0 shouldn't change, but leading 0s are removed. Since 010 = 10, the answer is 10 (that is, BA).