public void FindSecondTerm()
 {
     String input = "20+59";
     Parse parse = new Parse();
     String expected = "59";
     String actual = parse.SecondTerm(input);
     Assert.AreEqual(expected, actual);
 }