
public class Puzzle {

   /** Solve the word puzzle.
    * @param args three words (addend1, addend2 and sum)
    */
   public static void main (String[] args) {
      throw new RuntimeException ("Nothing implemented yet!"); // delete this
   }

}

