public class MysteryTester
{
   public static void main(String[] args)
   {
      Mystery mystery = new Mystery(10);
      mystery.add("Mary had a little lamb.");
      mystery.add("Its fleece was white as snow.");
      System.out.println(mystery.get());      
   }
}
